@copilotkit/runtime-client-gql
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
25 lines (22 loc) • 465 B
text/typescript
import { graphql } from "../@generated/gql";
export const getAvailableAgentsQuery = graphql(/** GraphQL **/ `
query availableAgents {
availableAgents {
agents {
name
id
description
}
}
}
`);
export const loadAgentStateQuery = graphql(/** GraphQL **/ `
query loadAgentState($data: LoadAgentStateInput!) {
loadAgentState(data: $data) {
threadId
threadExists
state
messages
}
}
`);