# Copyright (c) Microsoft. All rights reserved. from pytest import mark @mark.xfail(reason="Not solved") def test_self(): try: from agent_framework.openai import __version__ except ImportError: __version__ = None assert __version__ is not None def test_agent_framework(): try: from agent_framework import TextContent except ImportError: TextContent = None assert TextContent is not None text = TextContent("Hello, world!") assert text is not None