This commit is contained in:
Sixian Yi 2025-01-21 18:23:19 -08:00
parent 8ad0e31359
commit 447d65dbc2
3 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# Report for fireworks distribution
## Supported Models:
## Supported Models:
| Model Descriptor | fireworks |
|:---|:---|
| Llama-3-8B-Instruct | ❌ |
@ -26,7 +26,7 @@
| Llama-Guard-3-8B | ✅ |
| Llama-Guard-2-8B | ❌ |
## Inference:
## Inference:
| Model | API | Capability | Test | Status |
|:----- |:-----|:-----|:-----|:-----|
| Text | /chat_completion | streaming | test_text_chat_completion_streaming | Passed |
@ -39,15 +39,15 @@
| Text | /completion | non_streaming | test_text_completion_non_streaming | Passed |
| Text | /completion | structured_output | test_text_completion_structured_output | Passed |
## Memory:
## Memory:
| API | Capability | Test | Status |
|:-----|:-----|:-----|:-----|
| insert and query | inline | test_memory_bank_insert_inline_and_query | Error |
| insert and query | url | test_memory_bank_insert_from_url_and_query | Failed |
## Agent:
## Agent:
| API | Capability | Test | Status |
|:-----|:-----|:-----|:-----|
| create_agent_turn | rag | test_rag_agent | Failed |
| create_agent_turn | custom_tool | test_custom_tool | Passed |
| create_agent_turn | code_execution | test_code_execution | Failed |
| create_agent_turn | code_execution | test_code_execution | Failed |

View file

@ -28,7 +28,7 @@ INFERENCE_API_CAPA_TEST_MAP = {
}
MEMORY_API_CAPA_TEST_MAP = {
"insert and query": {
"/insert, /query": {
"inline": ["test_memory_bank_insert_inline_and_query"],
"url": ["test_memory_bank_insert_from_url_and_query"],
}

View file

@ -182,7 +182,7 @@ class Report:
test_nodeids = self.test_name_to_nodeid[test_name]
assert len(test_nodeids) > 0
test_table.append(
f"| {api} | {capa} | {test_name} | {self.test_data[test_nodeids[0]]} |"
f"| /{api} | {capa} | {test_name} | {self.test_data[test_nodeids[0]]} |"
)
report.extend(test_table)
output_file = self.output_path