LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
setup.py
baf/__init__.py
baf/core/__init__.py
baf/core/agent.py
baf/core/file.py
baf/core/message.py
baf/core/property.py
baf/core/session.py
baf/core/state.py
baf/core/entity/__init__.py
baf/core/entity/entity.py
baf/core/entity/entity_entry.py
baf/core/intent/__init__.py
baf/core/intent/intent.py
baf/core/intent/intent_parameter.py
baf/core/processors/__init__.py
baf/core/processors/audio_language_detection_processor.py
baf/core/processors/language_detection_processor.py
baf/core/processors/processor.py
baf/core/processors/user_adaptation_processor.py
baf/core/transition/__init__.py
baf/core/transition/condition.py
baf/core/transition/event.py
baf/core/transition/transition.py
baf/core/transition/transition_builder.py
baf/db/__init__.py
baf/db/db_handler.py
baf/db/monitoring_db.py
baf/db/monitoring_ui/__init__.py
baf/db/monitoring_ui/db_connection.py
baf/db/monitoring_ui/flow_graph.py
baf/db/monitoring_ui/home.py
baf/db/monitoring_ui/intent_details.py
baf/db/monitoring_ui/monitoring_ui.py
baf/db/monitoring_ui/sidebar.py
baf/db/monitoring_ui/table_overview.py
baf/db/monitoring_ui/utils.py
baf/exceptions/__init__.py
baf/exceptions/exceptions.py
baf/exceptions/logger.py
baf/library/__init__.py
baf/library/coroutine/__init__.py
baf/library/coroutine/async_helpers.py
baf/library/entity/__init__.py
baf/library/entity/base_entities.py
baf/library/intent/__init__.py
baf/library/intent/intent_library.py
baf/library/state/__init__.py
baf/library/state/reasoning_state_library.py
baf/library/state/state_library.py
baf/library/tool/__init__.py
baf/library/tool/task_tools.py
baf/library/tool/workspace_tools.py
baf/library/transition/__init__.py
baf/library/transition/condition_functions.py
baf/library/transition/conditions.py
baf/library/transition/events/__init__.py
baf/library/transition/events/base_events.py
baf/library/transition/events/github_webhooks_events.py
baf/library/transition/events/gitlab_webhooks_events.py
baf/nlp/__init__.py
baf/nlp/nlp_engine.py
baf/nlp/utils.py
baf/nlp/intent_classifier/__init__.py
baf/nlp/intent_classifier/intent_classifier.py
baf/nlp/intent_classifier/intent_classifier_configuration.py
baf/nlp/intent_classifier/intent_classifier_prediction.py
baf/nlp/intent_classifier/llm_intent_classifier.py
baf/nlp/intent_classifier/simple_intent_classifier_pytorch.py
baf/nlp/intent_classifier/simple_intent_classifier_tensorflow.py
baf/nlp/llm/__init__.py
baf/nlp/llm/llm.py
baf/nlp/llm/llm_huggingface.py
baf/nlp/llm/llm_huggingface_api.py
baf/nlp/llm/llm_openai_api.py
baf/nlp/llm/llm_replicate_api.py
baf/nlp/ner/__init__.py
baf/nlp/ner/matched_parameter.py
baf/nlp/ner/ner.py
baf/nlp/ner/ner_prediction.py
baf/nlp/ner/simple_ner.py
baf/nlp/ner/base/__init__.py
baf/nlp/ner/base/any.py
baf/nlp/ner/base/datetime.py
baf/nlp/ner/base/number.py
baf/nlp/preprocessing/__init__.py
baf/nlp/preprocessing/pipelines.py
baf/nlp/preprocessing/text_preprocessing.py
baf/nlp/rag/__init__.py
baf/nlp/rag/rag.py
baf/nlp/speech2text/__init__.py
baf/nlp/speech2text/api_speech2text.py
baf/nlp/speech2text/hf_speech2text.py
baf/nlp/speech2text/luxasr_speech2text.py
baf/nlp/speech2text/openai_speech2text.py
baf/nlp/speech2text/speech2text.py
baf/nlp/text2speech/__init__.py
baf/nlp/text2speech/hf_text2speech.py
baf/nlp/text2speech/openai_text2speech.py
baf/nlp/text2speech/piper_text2speech.py
baf/nlp/text2speech/text2speech.py
baf/platforms/__init__.py
baf/platforms/payload.py
baf/platforms/platform.py
baf/platforms/a2a/__init__.py
baf/platforms/a2a/a2a_platform.py
baf/platforms/a2a/agent_card.py
baf/platforms/a2a/agent_registry.py
baf/platforms/a2a/client.py
baf/platforms/a2a/error_handler.py
baf/platforms/a2a/message_router.py
baf/platforms/a2a/server.py
baf/platforms/a2a/task_protocol.py
baf/platforms/github/__init__.py
baf/platforms/github/github_actions.py
baf/platforms/github/github_objects.py
baf/platforms/github/github_platform.py
baf/platforms/gitlab/__init__.py
baf/platforms/gitlab/gitlab_actions.py
baf/platforms/gitlab/gitlab_objects.py
baf/platforms/gitlab/gitlab_platform.py
baf/platforms/telegram/__init__.py
baf/platforms/telegram/telegram_platform.py
baf/platforms/websocket/__init__.py
baf/platforms/websocket/websocket_platform.py
baf/platforms/websocket/streamlit_ui/__init__.py
baf/platforms/websocket/streamlit_ui/audio_queue.py
baf/platforms/websocket/streamlit_ui/chat.py
baf/platforms/websocket/streamlit_ui/chat_interface_style.py
baf/platforms/websocket/streamlit_ui/initialization.py
baf/platforms/websocket/streamlit_ui/login.py
baf/platforms/websocket/streamlit_ui/message_input.py
baf/platforms/websocket/streamlit_ui/profile_selector.py
baf/platforms/websocket/streamlit_ui/reasoning.py
baf/platforms/websocket/streamlit_ui/session_management.py
baf/platforms/websocket/streamlit_ui/sidebar.py
baf/platforms/websocket/streamlit_ui/streamlit_ui.py
baf/platforms/websocket/streamlit_ui/user_db.py
baf/platforms/websocket/streamlit_ui/vars.py
baf/platforms/websocket/streamlit_ui/websocket_callbacks.py
baf/reasoning/__init__.py
baf/reasoning/skill.py
baf/reasoning/tool.py
baf/reasoning/workspace.py
baf/test/__init__.py
baf/test/components/__init__.py
baf/test/components/conftest.py
baf/test/components/test_core_agent.py
baf/test/components/test_core_intent_entity.py
baf/test/components/test_core_message.py
baf/test/components/test_core_processor.py
baf/test/components/test_core_property.py
baf/test/components/test_core_session.py
baf/test/components/test_core_state.py
baf/test/components/test_core_transition.py
baf/test/components/test_library_events.py
baf/test/components/test_nlp_configurations.py
baf/test/components/test_nlp_engine.py
baf/test/components/test_nlp_preprocessing.py
baf/test/components/test_platforms.py
baf/test/components/test_workflows.py
baf/test/dependencies/__init__.py
baf/test/dependencies/conftest.py
baf/test/dependencies/test_core.py
baf/test/dependencies/test_docs.py
baf/test/dependencies/test_extras.py
baf/test/dependencies/test_framework.py
baf/test/dependencies/test_llms.py
baf/test/dependencies/test_tensorflow.py
baf/test/dependencies/test_torch.py
baf/test/examples/__init__.py
baf/test/examples/a2a_multiagent.py
baf/test/examples/api_speech2text_agent.py
baf/test/examples/github_agent.py
baf/test/examples/gitlab_agent.py
baf/test/examples/greetings_agent.py
baf/test/examples/llm_agent.py
baf/test/examples/rag_agent.py
baf/test/examples/reasoning_agent.py
baf/test/examples/speech2speech_agent.py
baf/test/examples/speech2text_agent.py
baf/test/examples/stargazer_agent.py
baf/test/examples/telegram_agent.py
baf/test/examples/text2speech_agent.py
baf/test/examples/weather_agent.py
baf/test/examples/web_crawl_agent.py
baf/test/examples/multiagent/__init__.py
baf/test/examples/multiagent/coder_agent.py
baf/test/examples/multiagent/main_agent.py
baf/test/examples/multiagent/reviewer_agent.py
baf/utils/__init__.py
baf/utils/web_crawl.py
besser_agentic_framework.egg-info/PKG-INFO
besser_agentic_framework.egg-info/SOURCES.txt
besser_agentic_framework.egg-info/dependency_links.txt
besser_agentic_framework.egg-info/requires.txt
besser_agentic_framework.egg-info/top_level.txt
requirements/requirements-core.txt
requirements/requirements-docs.txt
requirements/requirements-extras.txt
requirements/requirements-llms.txt
requirements/requirements-tensorflow.txt
requirements/requirements-torch.txt