mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
chore(frontend): remove accidentally committed generated file (#12373)
`responseType.ts` was accidentally committed inside `src/app/api/__generated__/models/` despite that directory being listed in `.gitignore` (added in PR #12238). - Removes `autogpt_platform/frontend/src/app/api/__generated__/models/responseType.ts` from git tracking — the file is already covered by the `.gitignore` rule `src/app/api/__generated__/` and should never have been committed. - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: - [x] No functional changes — only removes a stale tracked file that is already gitignored
This commit is contained in:
committed by
Lluis Agusti
parent
0fbeadcbc2
commit
2d28629a89
@@ -1,50 +0,0 @@
|
||||
/**
|
||||
* Generated by orval v7.13.0 🍺
|
||||
* Do not edit manually.
|
||||
* AutoGPT Agent Server
|
||||
* This server is used to execute agents that are created by the AutoGPT system.
|
||||
* OpenAPI spec version: 0.1
|
||||
*/
|
||||
|
||||
/**
|
||||
* Types of tool responses.
|
||||
*/
|
||||
export type ResponseType = (typeof ResponseType)[keyof typeof ResponseType];
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
||||
export const ResponseType = {
|
||||
agents_found: "agents_found",
|
||||
agent_details: "agent_details",
|
||||
setup_requirements: "setup_requirements",
|
||||
execution_started: "execution_started",
|
||||
need_login: "need_login",
|
||||
error: "error",
|
||||
no_results: "no_results",
|
||||
agent_output: "agent_output",
|
||||
understanding_updated: "understanding_updated",
|
||||
agent_preview: "agent_preview",
|
||||
agent_saved: "agent_saved",
|
||||
clarification_needed: "clarification_needed",
|
||||
block_list: "block_list",
|
||||
block_details: "block_details",
|
||||
block_output: "block_output",
|
||||
doc_search_results: "doc_search_results",
|
||||
doc_page: "doc_page",
|
||||
workspace_file_list: "workspace_file_list",
|
||||
workspace_file_content: "workspace_file_content",
|
||||
workspace_file_metadata: "workspace_file_metadata",
|
||||
workspace_file_written: "workspace_file_written",
|
||||
workspace_file_deleted: "workspace_file_deleted",
|
||||
operation_in_progress: "operation_in_progress",
|
||||
input_validation_error: "input_validation_error",
|
||||
web_fetch: "web_fetch",
|
||||
browser_navigate: "browser_navigate",
|
||||
browser_act: "browser_act",
|
||||
browser_screenshot: "browser_screenshot",
|
||||
bash_exec: "bash_exec",
|
||||
feature_request_search: "feature_request_search",
|
||||
feature_request_created: "feature_request_created",
|
||||
suggested_goal: "suggested_goal",
|
||||
mcp_tools_discovered: "mcp_tools_discovered",
|
||||
mcp_tool_output: "mcp_tool_output",
|
||||
} as const;
|
||||
Reference in New Issue
Block a user