Agent Protocol v1 (#5254)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
This commit is contained in:
merwanehamadi
2023-09-18 11:09:55 -07:00
committed by GitHub
parent 869682a87d
commit 2cf350b783
4 changed files with 5 additions and 6 deletions

View File

@@ -42,7 +42,6 @@ jobs:
run: |
sh run &
sleep 20
URL=http://127.0.0.1:8000 bash -c "$(curl -fsSL https://raw.githubusercontent.com/AI-Engineers-Foundation/agent-protocol/main/testing_suite/test.sh)"
poetry run agbenchmark --mock
poetry run agbenchmark --test=WriteFile
env:

View File

@@ -55,8 +55,8 @@ class Agent:
allow_headers=["*"],
)
app.include_router(router, prefix="/api/v1")
app.mount("/app", StaticFiles(directory="../../frontend/build/web"), name="app")
app.include_router(router, prefix="/ap/v1")
# app.mount("/app", StaticFiles(directory="../../frontend/build/web"), name="app")
app.add_middleware(AgentMiddleware, agent=self)
@app.get("/", include_in_schema=False)

View File

@@ -20,7 +20,7 @@ async def run_api_agent(
) -> None:
host_value = None
configuration = Configuration(host=config["AgentBenchmarkConfig"].host)
configuration = Configuration(host=config["AgentBenchmarkConfig"].host + "/ap/v1")
async with ApiClient(configuration) as api_client:
api_instance = AgentApi(api_client)
task_request_body = TaskRequestBody(input=task.task)

View File

@@ -36,7 +36,7 @@ void main() async {
MultiProvider(
providers: [
Provider(
create: (context) => RestApiUtility("http://127.0.0.1:8000/api/v1"),
create: (context) => RestApiUtility("http://127.0.0.1:8000/ap/v1"),
),
ProxyProvider<RestApiUtility, ChatService>(
update: (context, restApiUtility, chatService) =>