mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
d5ee8c89a0
* fixes `InProgressStateWait` interface (#1040) interface InProgressStateWait<T extends Parameter[] | [] = []> { status: "inProgress"; args: Partial<MappedParameterTypes<T>>; /** @deprecated use respond instead */ handler: undefined; respond: undefined; // missed somehow in earlier change result: undefined; } * Update index.ts (#1041) * Fix issues with the quickstart (#1047) * deprecate disabled, add "available" (#1016) * Pre release pre/1.4.1 * run prerelease on pre/* * Pre release pre/1.4.1 * feat: surface Copilot Cloud errors in debug mode (#1057) * feat(react-core): toast for Cloud * use hook instead of constructor for runtime client * fix formatting * fix type issues * fix odd typo * copilo cloud copilotkit provider: remove use client, and reference layout.tsx * per install path dependency installation * fix self hosting quickstart instruction, to mimick what we have in SelfHostingCopilotRuntimeConfigureCopilotKitProvider * . * highlight npx command * find your copilot runtime: instructions update * llm adapters: add quickstart code snippets * remove unneeded section * add steps to self-hosting * fix legit docs issue that came out of nowhere * remove llm adadpters reference which seems to break stuff * fix assistant message css when not using tailwind (#1048) * Fix frontend tool definitions in LangGraph state (WIP) (#1053) * Pre release mme/frontend-tool-docs * update packages * move convertJsonSchemaToZodSchema to shared and add test code * exit pre * Pre release mme/frontend-tool-docs * implement convertActionsToDynamicStructuredTools * Pre release mme/frontend-tool-docs * pass frontend function to LangGraph JS * remove console.log * exit pre * Pre release pre/1.4.1 * fix(ci): remove typescript step from quality, we run build anyway * exit pre mode * Release 1.4.1 --------- Co-authored-by: Markus Ecker <markus.ecker@gmail.com> Co-authored-by: Ariel Weinberger <weinberger.ariel@gmail.com> Co-authored-by: Atai Barkai <atai.barkai@gmail.com>
9 lines
482 B
Plaintext
9 lines
482 B
Plaintext
### Find your CopilotRuntime
|
|
|
|
The starting point for this section is the `CopilotRuntime` you set up during quickstart (the CopilotKit backend endpoint).
|
|
For a refresher, see [Self-Hosting](/guides/self-hosting) (or alternatively, revisit the [quickstart](/quickstart)).
|
|
|
|
**First, find your `CopilotRuntime` instance in your code.** You can simply search your codebase for `CopilotRuntime`.
|
|
|
|
If you followed the quickstart, it'll be where you set up the `/api/copilotkit` endpoint.
|