# PydanticAI Integration with G4F Client This README provides an overview of how to integrate PydanticAI with the G4F client to create an agent that interacts with a language model. With this setup, you'll be able to apply patches to use PydanticAI models, enable debugging, and run simple agent-based interactions synchronously. However, please note that tool calls within AI requests are currently **not fully supported** in this environment. ## Requirements Before starting, make sure you have the following Python dependencies installed: - `g4f`: A client that interfaces with various LLMs. - `pydantic_ai`: A module that provides integration with Pydantic-based models. ### Installation To install these dependencies, you can use `pip`: ```bash pip install g4f pydantic_ai ``` ## Step-by-Step Setup ### 1. Patch G4F to Use PydanticAI Models In order to use PydanticAI models with G4F, you need to apply the necessary patch to the client. This can be done by importing `apply_patch` from `g4f.tools.pydantic_ai`. The `api_key` parameter is optional, so if you have one, you can provide it. If not, the system will proceed without it. ```python from g4f.tools.pydantic_ai import apply_patch apply_patch(api_key="your_api_key_here") # Optional ``` If you don't have an API key, simply omit the `api_key` argument. ### 2. Enable Debug Logging For troubleshooting and monitoring purposes, you may want to enable debug logging. This can be achieved by setting `g4f.debug.logging` to `True`. ```python import g4f.debug g4f.debug.logging = True ``` This will log detailed information about the internal processes and interactions. ### 3. Create a Simple Agent Now you are ready to create a simple agent that can interact with the LLM. The agent is initialized with a model, and you can also define a system prompt. Here's an example where a basic agent is created with the model `g4f:Gemini:Gemini` and a simple system prompt: ```python from pydantic_ai import Agent # Define the agent agent = Agent( 'g4f:Gemini:Gemini', system_prompt='Be concise, reply with one sentence.', ) ``` ### 4. Run the Agent Synchronously Once the agent is set up, you can run it synchronously to interact with the LLM. The `run_sync` method sends a query to the LLM and returns the result. ```python # Run the agent synchronously with a user query result = agent.run_sync('Where does "hello world" come from?') # Output the response print(result.data) ``` In this example, the agent will send the system prompt along with the user query (`"Where does 'hello world' come from?"`) to the LLM. The LLM will process the request and return a concise answer. ### Example Output ```bash The phrase "hello world" is commonly used in programming tutorials to demonstrate basic syntax and the concept of outputting text to the screen. ``` ## Tool Calls and Limitations **Important**: Tool calls (such as applying external functions or calling APIs within the AI request itself) are **currently not fully supported**. If your system relies on invoking specific external tools or functions during the conversation with the model, you will need to implement this functionality outside the agent's context or handle it before or after the agent's request. For example, you can process your query or interact with external systems before passing the data to the agent. ## Conclusion By following these steps, you have successfully integrated PydanticAI models into the G4F client, created an agent, and enabled debugging. This allows you to conduct conversations with the language model, pass system prompts, and retrieve responses synchronously. ### Notes: - The `api_key` parameter when calling `apply_patch` is optional. If you don’t provide it, the system will still work without an API key. - Modify the agent’s `system_prompt` to suit the nature of the conversation you wish to have. - **Tool calls within AI requests are not fully supported** at the moment. Use the agent's basic functionality for generating responses and handle external calls separately. For further customization and advanced use cases, refer to the G4F and PydanticAI documentation.