Disable warnings about experimental skills and memory features #6872
-
|
I'm using Python 3.14 and agent-framework-openai 1.8.2 and I get the following warnings when I run an agent like in the following code import asyncio
from agent_framework import Agent
from agent_framework.openai import OpenAIChatClient
from dotenv import load_dotenv
async def main():
"""Run this example."""
load_dotenv()
client = OpenAIChatClient(model="gpt-5.5")
agent = Agent(client=client, instructions="You are a funny agent.")
result = await agent.run("What is the capital of France?")
print(f"\nAgent:\n{result}")
if __name__ == "__main__":
asyncio.run(main())Is there a way to disable the warnings shown above when I use Agent Framework in a Python project? |
Beta Was this translation helpful? Give feedback.
Answered by
eavanvalkenburg
Jul 7, 2026
Replies: 1 comment 3 replies
-
|
thanks @wigging I need to have a look to see when the harness and skills are triggering the warning, but in general, you can do this: import warnings
warnings.filterwarnings("ignore", message=r"\[SKILLS\].*", category=FutureWarning) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
wigging
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks @wigging I need to have a look to see when the harness and skills are triggering the warning, but in general, you can do this: