Skip to content

Commit

Permalink
try entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jan 5, 2025
1 parent e702907 commit 81f1c24
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
--health-timeout 60s
--health-retries 5
--health-start-period 2m
--command "server --console-address ':9001' /data"
--entrypoint "minio server --console-address ':9001' /data"
agixt:
image: ${{ inputs.image }}
ports:
Expand Down
13 changes: 13 additions & 0 deletions agixt/Models.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,3 +472,16 @@ class AgentBrowsedLinksResponse(BaseModel):

class AgentPromptResponse(BaseModel):
response: str


class ChainStepDetail(BaseModel):
step: int
agent_name: str
prompt_type: str
prompt: Dict[str, Any]


class ChainDetailsResponse(BaseModel):
id: str
chain_name: str
steps: List[ChainStepDetail]

0 comments on commit 81f1c24

Please sign in to comment.