chore(frontend): Regenerate API client for orval v7.11.2 (#10663)

### Changes 🏗️

- Generate API client for orval v7.11.2
- Fix type error in `useAgentSelectStep.ts`

### Checklist 📋

#### For code changes:
- [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] Platform works
  - [x] Updated codepath in `useAgentSelectStep.ts` works
This commit is contained in:
Krzysztof Czerwinski
2025-08-18 05:20:37 +02:00
committed by GitHub
parent 32513b26ab
commit 5d364e13f6
330 changed files with 519 additions and 408 deletions

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -475,7 +475,7 @@ export const getV2AdminDownloadAgentFile = async (
};
export const getGetV2AdminDownloadAgentFileQueryKey = (
storeListingVersionId: string,
storeListingVersionId?: string,
) => {
return [
`/api/store/admin/submissions/download/${storeListingVersionId}`,

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -390,7 +390,7 @@ export const getV1GetSpecificApiKey = async (
);
};
export const getGetV1GetSpecificApiKeyQueryKey = (keyId: string) => {
export const getGetV1GetSpecificApiKeyQueryKey = (keyId?: string) => {
return [`/api/api-keys/${keyId}`] as const;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -424,8 +424,8 @@ export const getV1GetGraphVersion = async (
};
export const getGetV1GetGraphVersionQueryKey = (
graphId: string,
version: number | null,
graphId?: string,
version?: number | null,
params?: GetV1GetGraphVersionParams,
) => {
return [
@@ -694,7 +694,7 @@ export const getV1GetSpecificGraph = async (
};
export const getGetV1GetSpecificGraphQueryKey = (
graphId: string,
graphId?: string,
params?: GetV1GetSpecificGraphParams,
) => {
return [`/api/graphs/${graphId}`, ...(params ? [params] : [])] as const;
@@ -1155,7 +1155,7 @@ export const getV1GetAllGraphVersions = async (
);
};
export const getGetV1GetAllGraphVersionsQueryKey = (graphId: string) => {
export const getGetV1GetAllGraphVersionsQueryKey = (graphId?: string) => {
return [`/api/graphs/${graphId}/versions`] as const;
};
@@ -1970,7 +1970,7 @@ export const getV1GetGraphExecutions = async (
);
};
export const getGetV1GetGraphExecutionsQueryKey = (graphId: string) => {
export const getGetV1GetGraphExecutionsQueryKey = (graphId?: string) => {
return [`/api/graphs/${graphId}/executions`] as const;
};
@@ -2196,8 +2196,8 @@ export const getV1GetExecutionDetails = async (
};
export const getGetV1GetExecutionDetailsQueryKey = (
graphId: string,
graphExecId: string,
graphId?: string,
graphExecId?: string,
) => {
return [`/api/graphs/${graphId}/executions/${graphExecId}`] as const;
};
@@ -2402,7 +2402,7 @@ export const prefetchGetV1GetExecutionDetailsQuery = async <
* @summary Delete graph execution
*/
export type deleteV1DeleteGraphExecutionResponse204 = {
data: void;
data: null;
status: 204;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -105,7 +105,7 @@ export const getV1Login = async (
};
export const getGetV1LoginQueryKey = (
provider: string,
provider?: string,
params?: GetV1LoginParams,
) => {
return [
@@ -620,7 +620,9 @@ export const getV1ListCredentialsByProvider = async (
);
};
export const getGetV1ListCredentialsByProviderQueryKey = (provider: string) => {
export const getGetV1ListCredentialsByProviderQueryKey = (
provider?: string,
) => {
return [`/api/integrations/${provider}/credentials`] as const;
};
@@ -962,8 +964,8 @@ export const getV1GetCredential = async (
};
export const getGetV1GetCredentialQueryKey = (
provider: string,
credId: string,
provider?: string,
credId?: string,
) => {
return [`/api/integrations/${provider}/credentials/${credId}`] as const;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -530,7 +530,7 @@ export type postV2AddMarketplaceAgentResponse201 = {
};
export type postV2AddMarketplaceAgentResponse404 = {
data: void;
data: null;
status: 404;
};
@@ -539,10 +539,16 @@ export type postV2AddMarketplaceAgentResponse422 = {
status: 422;
};
export type postV2AddMarketplaceAgentResponse500 = {
data: null;
status: 500;
};
export type postV2AddMarketplaceAgentResponseComposite =
| postV2AddMarketplaceAgentResponse201
| postV2AddMarketplaceAgentResponse404
| postV2AddMarketplaceAgentResponse422;
| postV2AddMarketplaceAgentResponse422
| postV2AddMarketplaceAgentResponse500;
export type postV2AddMarketplaceAgentResponse =
postV2AddMarketplaceAgentResponseComposite & {
@@ -569,7 +575,7 @@ export const postV2AddMarketplaceAgent = async (
};
export const getPostV2AddMarketplaceAgentMutationOptions = <
TError = void | HTTPValidationError,
TError = null | HTTPValidationError | null,
TContext = unknown,
>(options?: {
mutation?: UseMutationOptions<
@@ -611,13 +617,14 @@ export type PostV2AddMarketplaceAgentMutationResult = NonNullable<
>;
export type PostV2AddMarketplaceAgentMutationBody =
BodyPostV2AddMarketplaceAgent;
export type PostV2AddMarketplaceAgentMutationError = void | HTTPValidationError;
export type PostV2AddMarketplaceAgentMutationError =
null | HTTPValidationError | null;
/**
* @summary Add Marketplace Agent
*/
export const usePostV2AddMarketplaceAgent = <
TError = void | HTTPValidationError,
TError = null | HTTPValidationError | null,
TContext = unknown,
>(
options?: {
@@ -679,7 +686,7 @@ export const getV2GetLibraryAgent = async (
);
};
export const getGetV2GetLibraryAgentQueryKey = (libraryAgentId: string) => {
export const getGetV2GetLibraryAgentQueryKey = (libraryAgentId?: string) => {
return [`/api/library/agents/${libraryAgentId}`] as const;
};
@@ -890,7 +897,7 @@ export type patchV2UpdateLibraryAgentResponse422 = {
};
export type patchV2UpdateLibraryAgentResponse500 = {
data: void;
data: null;
status: 500;
};
@@ -925,7 +932,7 @@ export const patchV2UpdateLibraryAgent = async (
};
export const getPatchV2UpdateLibraryAgentMutationOptions = <
TError = HTTPValidationError | void,
TError = HTTPValidationError | null,
TContext = unknown,
>(options?: {
mutation?: UseMutationOptions<
@@ -966,13 +973,13 @@ export type PatchV2UpdateLibraryAgentMutationResult = NonNullable<
Awaited<ReturnType<typeof patchV2UpdateLibraryAgent>>
>;
export type PatchV2UpdateLibraryAgentMutationBody = LibraryAgentUpdateRequest;
export type PatchV2UpdateLibraryAgentMutationError = HTTPValidationError | void;
export type PatchV2UpdateLibraryAgentMutationError = HTTPValidationError | null;
/**
* @summary Update Library Agent
*/
export const usePatchV2UpdateLibraryAgent = <
TError = HTTPValidationError | void,
TError = HTTPValidationError | null,
TContext = unknown,
>(
options?: {
@@ -1016,12 +1023,12 @@ export type deleteV2DeleteLibraryAgentResponse200 = {
};
export type deleteV2DeleteLibraryAgentResponse204 = {
data: void;
data: null;
status: 204;
};
export type deleteV2DeleteLibraryAgentResponse404 = {
data: void;
data: null;
status: 404;
};
@@ -1030,11 +1037,17 @@ export type deleteV2DeleteLibraryAgentResponse422 = {
status: 422;
};
export type deleteV2DeleteLibraryAgentResponse500 = {
data: null;
status: 500;
};
export type deleteV2DeleteLibraryAgentResponseComposite =
| deleteV2DeleteLibraryAgentResponse200
| deleteV2DeleteLibraryAgentResponse204
| deleteV2DeleteLibraryAgentResponse404
| deleteV2DeleteLibraryAgentResponse422;
| deleteV2DeleteLibraryAgentResponse422
| deleteV2DeleteLibraryAgentResponse500;
export type deleteV2DeleteLibraryAgentResponse =
deleteV2DeleteLibraryAgentResponseComposite & {
@@ -1059,7 +1072,7 @@ export const deleteV2DeleteLibraryAgent = async (
};
export const getDeleteV2DeleteLibraryAgentMutationOptions = <
TError = void | HTTPValidationError,
TError = null | HTTPValidationError | null,
TContext = unknown,
>(options?: {
mutation?: UseMutationOptions<
@@ -1101,13 +1114,13 @@ export type DeleteV2DeleteLibraryAgentMutationResult = NonNullable<
>;
export type DeleteV2DeleteLibraryAgentMutationError =
void | HTTPValidationError;
null | HTTPValidationError | null;
/**
* @summary Delete Library Agent
*/
export const useDeleteV2DeleteLibraryAgent = <
TError = void | HTTPValidationError,
TError = null | HTTPValidationError | null,
TContext = unknown,
>(
options?: {
@@ -1186,7 +1199,7 @@ export const getV2GetLibraryAgentByGraphId = async (
};
export const getGetV2GetLibraryAgentByGraphIdQueryKey = (
graphId: string,
graphId?: string,
params?: GetV2GetLibraryAgentByGraphIdParams,
) => {
return [
@@ -1432,7 +1445,7 @@ export const getV2GetAgentByStoreId = async (
};
export const getGetV2GetAgentByStoreIdQueryKey = (
storeListingVersionId: string,
storeListingVersionId?: string,
) => {
return [`/api/library/agents/marketplace/${storeListingVersionId}`] as const;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -94,7 +94,9 @@ export const getV2ListPresets = async (
);
};
export const getGetV2ListPresetsQueryKey = (params: GetV2ListPresetsParams) => {
export const getGetV2ListPresetsQueryKey = (
params?: GetV2ListPresetsParams,
) => {
return [`/api/library/presets`, ...(params ? [params] : [])] as const;
};
@@ -423,7 +425,7 @@ export const getV2GetASpecificPreset = async (
);
};
export const getGetV2GetASpecificPresetQueryKey = (presetId: string) => {
export const getGetV2GetASpecificPresetQueryKey = (presetId?: string) => {
return [`/api/library/presets/${presetId}`] as const;
};
@@ -732,7 +734,7 @@ export const usePatchV2UpdateAnExistingPreset = <
* @summary Delete a preset
*/
export type deleteV2DeleteAPresetResponse204 = {
data: void;
data: null;
status: 204;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -187,7 +187,7 @@ export const getV1ListExecutionSchedulesForAGraph = async (
};
export const getGetV1ListExecutionSchedulesForAGraphQueryKey = (
graphId: string,
graphId?: string,
) => {
return [`/api/graphs/${graphId}/schedules`] as const;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
@@ -27,6 +27,8 @@ import type { CreatorDetails } from "../../models/creatorDetails";
import type { CreatorsResponse } from "../../models/creatorsResponse";
import type { GetV2GetMyAgentsParams } from "../../models/getV2GetMyAgentsParams";
import type { GetV2ListMySubmissionsParams } from "../../models/getV2ListMySubmissionsParams";
import type { GetV2ListStoreAgentsParams } from "../../models/getV2ListStoreAgentsParams";
@@ -687,8 +689,8 @@ export const getV2GetSpecificAgent = async (
};
export const getGetV2GetSpecificAgentQueryKey = (
username: string,
agentName: string,
username?: string,
agentName?: string,
) => {
return [`/api/store/agents/${username}/${agentName}`] as const;
};
@@ -926,7 +928,7 @@ export const getV2GetAgentGraph = async (
};
export const getGetV2GetAgentGraphQueryKey = (
storeListingVersionId: string,
storeListingVersionId?: string,
) => {
return [`/api/store/graph/${storeListingVersionId}`] as const;
};
@@ -1157,7 +1159,7 @@ export const getV2GetAgentByVersion = async (
};
export const getGetV2GetAgentByVersionQueryKey = (
storeListingVersionId: string,
storeListingVersionId?: string,
) => {
return [`/api/store/agents/${storeListingVersionId}`] as const;
};
@@ -1760,7 +1762,7 @@ export const getV2GetCreatorDetails = async (
);
};
export const getGetV2GetCreatorDetailsQueryKey = (username: string) => {
export const getGetV2GetCreatorDetailsQueryKey = (username?: string) => {
return [`/api/store/creator/${username}`] as const;
};
@@ -1950,45 +1952,78 @@ export type getV2GetMyAgentsResponse200 = {
status: 200;
};
export type getV2GetMyAgentsResponseComposite = getV2GetMyAgentsResponse200;
export type getV2GetMyAgentsResponse422 = {
data: HTTPValidationError;
status: 422;
};
export type getV2GetMyAgentsResponseComposite =
| getV2GetMyAgentsResponse200
| getV2GetMyAgentsResponse422;
export type getV2GetMyAgentsResponse = getV2GetMyAgentsResponseComposite & {
headers: Headers;
};
export const getGetV2GetMyAgentsUrl = () => {
return `/api/store/myagents`;
export const getGetV2GetMyAgentsUrl = (params?: GetV2GetMyAgentsParams) => {
const normalizedParams = new URLSearchParams();
Object.entries(params || {}).forEach(([key, value]) => {
if (value !== undefined) {
normalizedParams.append(key, value === null ? "null" : value.toString());
}
});
const stringifiedParams = normalizedParams.toString();
return stringifiedParams.length > 0
? `/api/store/myagents?${stringifiedParams}`
: `/api/store/myagents`;
};
export const getV2GetMyAgents = async (
params?: GetV2GetMyAgentsParams,
options?: RequestInit,
): Promise<getV2GetMyAgentsResponse> => {
return customMutator<getV2GetMyAgentsResponse>(getGetV2GetMyAgentsUrl(), {
...options,
method: "GET",
});
return customMutator<getV2GetMyAgentsResponse>(
getGetV2GetMyAgentsUrl(params),
{
...options,
method: "GET",
},
);
};
export const getGetV2GetMyAgentsQueryKey = () => {
return [`/api/store/myagents`] as const;
export const getGetV2GetMyAgentsQueryKey = (
params?: GetV2GetMyAgentsParams,
) => {
return [`/api/store/myagents`, ...(params ? [params] : [])] as const;
};
export const getGetV2GetMyAgentsQueryOptions = <
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
>(options?: {
query?: Partial<
UseQueryOptions<Awaited<ReturnType<typeof getV2GetMyAgents>>, TError, TData>
>;
request?: SecondParameter<typeof customMutator>;
}) => {
TError = HTTPValidationError,
>(
params?: GetV2GetMyAgentsParams,
options?: {
query?: Partial<
UseQueryOptions<
Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError,
TData
>
>;
request?: SecondParameter<typeof customMutator>;
},
) => {
const { query: queryOptions, request: requestOptions } = options ?? {};
const queryKey = queryOptions?.queryKey ?? getGetV2GetMyAgentsQueryKey();
const queryKey =
queryOptions?.queryKey ?? getGetV2GetMyAgentsQueryKey(params);
const queryFn: QueryFunction<
Awaited<ReturnType<typeof getV2GetMyAgents>>
> = ({ signal }) => getV2GetMyAgents({ signal, ...requestOptions });
> = ({ signal }) => getV2GetMyAgents(params, { signal, ...requestOptions });
return { queryKey, queryFn, ...queryOptions } as UseQueryOptions<
Awaited<ReturnType<typeof getV2GetMyAgents>>,
@@ -2000,12 +2035,13 @@ export const getGetV2GetMyAgentsQueryOptions = <
export type GetV2GetMyAgentsQueryResult = NonNullable<
Awaited<ReturnType<typeof getV2GetMyAgents>>
>;
export type GetV2GetMyAgentsQueryError = unknown;
export type GetV2GetMyAgentsQueryError = HTTPValidationError;
export function useGetV2GetMyAgents<
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
TError = HTTPValidationError,
>(
params: undefined | GetV2GetMyAgentsParams,
options: {
query: Partial<
UseQueryOptions<
@@ -2030,8 +2066,9 @@ export function useGetV2GetMyAgents<
};
export function useGetV2GetMyAgents<
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
TError = HTTPValidationError,
>(
params?: GetV2GetMyAgentsParams,
options?: {
query?: Partial<
UseQueryOptions<
@@ -2056,8 +2093,9 @@ export function useGetV2GetMyAgents<
};
export function useGetV2GetMyAgents<
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
TError = HTTPValidationError,
>(
params?: GetV2GetMyAgentsParams,
options?: {
query?: Partial<
UseQueryOptions<
@@ -2078,8 +2116,9 @@ export function useGetV2GetMyAgents<
export function useGetV2GetMyAgents<
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
TError = HTTPValidationError,
>(
params?: GetV2GetMyAgentsParams,
options?: {
query?: Partial<
UseQueryOptions<
@@ -2094,7 +2133,7 @@ export function useGetV2GetMyAgents<
): UseQueryResult<TData, TError> & {
queryKey: DataTag<QueryKey, TData, TError>;
} {
const queryOptions = getGetV2GetMyAgentsQueryOptions(options);
const queryOptions = getGetV2GetMyAgentsQueryOptions(params, options);
const query = useQuery(queryOptions, queryClient) as UseQueryResult<
TData,
@@ -2111,9 +2150,10 @@ export function useGetV2GetMyAgents<
*/
export const prefetchGetV2GetMyAgentsQuery = async <
TData = Awaited<ReturnType<typeof getV2GetMyAgents>>,
TError = unknown,
TError = HTTPValidationError,
>(
queryClient: QueryClient,
params?: GetV2GetMyAgentsParams,
options?: {
query?: Partial<
UseQueryOptions<
@@ -2125,7 +2165,7 @@ export const prefetchGetV2GetMyAgentsQuery = async <
request?: SecondParameter<typeof customMutator>;
},
): Promise<QueryClient> => {
const queryOptions = getGetV2GetMyAgentsQueryOptions(options);
const queryOptions = getGetV2GetMyAgentsQueryOptions(params, options);
await queryClient.prefetchQuery(queryOptions);
@@ -2929,7 +2969,7 @@ export const getV2DownloadAgentFile = async (
};
export const getGetV2DownloadAgentFileQueryKey = (
storeListingVersionId: string,
storeListingVersionId?: string,
) => {
return [`/api/store/download/agents/${storeListingVersionId}`] as const;
};

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

View File

@@ -1,5 +1,5 @@
/**
* Generated by orval v7.10.0 🍺
* Generated by orval v7.11.2 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.

Some files were not shown because too many files have changed in this diff Show More