mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 02:53:30 +00:00
Kill colons
This commit is contained in:
parent
910717c1fd
commit
3d14a3d46f
1 changed files with 5 additions and 4 deletions
|
@ -147,7 +147,7 @@ class Report:
|
|||
def pytest_sessionfinish(self, session):
|
||||
report = []
|
||||
report.append(f"# Report for {self.image_name} distribution")
|
||||
report.append("\n## Supported Models:")
|
||||
report.append("\n## Supported Models")
|
||||
|
||||
header = f"| Model Descriptor | {self.image_name} |"
|
||||
dividor = "|:---|:---|"
|
||||
|
@ -180,7 +180,7 @@ class Report:
|
|||
rows.append(row)
|
||||
report.extend(rows)
|
||||
|
||||
report.append("\n## Inference:")
|
||||
report.append("\n## Inference")
|
||||
test_table = [
|
||||
"| Model | API | Capability | Test | Status |",
|
||||
"|:----- |:-----|:-----|:-----|:-----|",
|
||||
|
@ -205,9 +205,10 @@ class Report:
|
|||
|
||||
report.extend(test_table)
|
||||
|
||||
name_map = {Api.vector_io: "Vector IO", Api.agents: "Agents"}
|
||||
for api_group in [Api.vector_io, Api.agents]:
|
||||
api_capitalized = api_group.name.capitalize()
|
||||
report.append(f"\n## {api_capitalized}:")
|
||||
api_capitalized = name_map[api_group]
|
||||
report.append(f"\n## {api_capitalized}")
|
||||
test_table = [
|
||||
"| API | Capability | Test | Status |",
|
||||
"|:-----|:-----|:-----|:-----|",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue