mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 18:50:44 +00:00
fix
This commit is contained in:
parent
8ad0e31359
commit
447d65dbc2
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Report for fireworks distribution
|
# Report for fireworks distribution
|
||||||
|
|
||||||
## Supported Models:
|
## Supported Models:
|
||||||
| Model Descriptor | fireworks |
|
| Model Descriptor | fireworks |
|
||||||
|:---|:---|
|
|:---|:---|
|
||||||
| Llama-3-8B-Instruct | ❌ |
|
| Llama-3-8B-Instruct | ❌ |
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
| Llama-Guard-3-8B | ✅ |
|
| Llama-Guard-3-8B | ✅ |
|
||||||
| Llama-Guard-2-8B | ❌ |
|
| Llama-Guard-2-8B | ❌ |
|
||||||
|
|
||||||
## Inference:
|
## Inference:
|
||||||
| Model | API | Capability | Test | Status |
|
| Model | API | Capability | Test | Status |
|
||||||
|:----- |:-----|:-----|:-----|:-----|
|
|:----- |:-----|:-----|:-----|:-----|
|
||||||
| Text | /chat_completion | streaming | test_text_chat_completion_streaming | Passed |
|
| 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 | non_streaming | test_text_completion_non_streaming | Passed |
|
||||||
| Text | /completion | structured_output | test_text_completion_structured_output | Passed |
|
| Text | /completion | structured_output | test_text_completion_structured_output | Passed |
|
||||||
|
|
||||||
## Memory:
|
## Memory:
|
||||||
| API | Capability | Test | Status |
|
| API | Capability | Test | Status |
|
||||||
|:-----|:-----|:-----|:-----|
|
|:-----|:-----|:-----|:-----|
|
||||||
| insert and query | inline | test_memory_bank_insert_inline_and_query | Error |
|
| 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 |
|
| insert and query | url | test_memory_bank_insert_from_url_and_query | Failed |
|
||||||
|
|
||||||
## Agent:
|
## Agent:
|
||||||
| API | Capability | Test | Status |
|
| API | Capability | Test | Status |
|
||||||
|:-----|:-----|:-----|:-----|
|
|:-----|:-----|:-----|:-----|
|
||||||
| create_agent_turn | rag | test_rag_agent | Failed |
|
| create_agent_turn | rag | test_rag_agent | Failed |
|
||||||
| create_agent_turn | custom_tool | test_custom_tool | Passed |
|
| 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 |
|
||||||
|
|
|
@ -28,7 +28,7 @@ INFERENCE_API_CAPA_TEST_MAP = {
|
||||||
}
|
}
|
||||||
|
|
||||||
MEMORY_API_CAPA_TEST_MAP = {
|
MEMORY_API_CAPA_TEST_MAP = {
|
||||||
"insert and query": {
|
"/insert, /query": {
|
||||||
"inline": ["test_memory_bank_insert_inline_and_query"],
|
"inline": ["test_memory_bank_insert_inline_and_query"],
|
||||||
"url": ["test_memory_bank_insert_from_url_and_query"],
|
"url": ["test_memory_bank_insert_from_url_and_query"],
|
||||||
}
|
}
|
||||||
|
|
|
@ -182,7 +182,7 @@ class Report:
|
||||||
test_nodeids = self.test_name_to_nodeid[test_name]
|
test_nodeids = self.test_name_to_nodeid[test_name]
|
||||||
assert len(test_nodeids) > 0
|
assert len(test_nodeids) > 0
|
||||||
test_table.append(
|
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)
|
report.extend(test_table)
|
||||||
output_file = self.output_path
|
output_file = self.output_path
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue