Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser






Quick Information

Send and receive LLM calls to your favourite API (like OpenAI) and embed your text using your local ollama installationCheck out the examples at res://addons/gopilot_utils/examplesRead the class reference to figure our exactly how to use these nodes, or that the lil guide I linked
Create LLM powered applications in Godot
Gopilot Utils offers three nodes to simplify the creation proccess of AI driven experiences
ChatRequester
Use the ChatRequester for chat, and single-turn interactions.
The generate()
and send_message
methods make chatting a breeze!
Even easier: Simply write var response = await chat_requester.generate("Your prompt here")
and you immediately get the response, once it is finished.
Here a guide on how to use this node
AgentHandler
You want an agent in your project using the ReAct (Reason -> Act -> Observe -> Reason ...) workflow? No problem! Simply add the actions in the inspector, handle the action string in a function, and the returned result becomes the observation.
Here a guide on how to use the AgentHandler in combination with the ChatRequester
EmbedRequester
Want to dive deeper and use semantic similarily analysis for RAG applications? The EmbedRequester makes this easy, with just a few methods!
Send and receive LLM calls to your favourite API (like OpenAI) and embed your text using your local ollama installation
Check out the examples at res://addons/gopilot_utils/examples
Read the class reference to figure our exactly how to use these nodes, or that the lil guide I linked
Reviews
Quick Information

Send and receive LLM calls to your favourite API (like OpenAI) and embed your text using your local ollama installationCheck out the examples at res://addons/gopilot_utils/examplesRead the class reference to figure our exactly how to use these nodes, or that the lil guide I linked