SimplerLLM 0.3.3.2__tar.gz → 0.3.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/PKG-INFO +1 -1
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/json_helpers.py +2 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM.egg-info/PKG-INFO +1 -1
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/setup.py +1 -1
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/LICENSE +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/README.md +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/google_image.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/image_response_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/openai_image.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/stability_image.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/google_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/stability_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/embeddings.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/flow/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/flow/flow.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/flow/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/flow/tool_registry.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/exceptions.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/input_guardrails/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/input_guardrails/pii_detection.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/input_guardrails/prompt_injection.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/input_guardrails/topic_filter.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/output_guardrails/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/output_guardrails/content_safety.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/output_guardrails/format_validator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/output_guardrails/length_validator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/output_guardrails/pii_detection.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/guardrails/wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/reliable.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/anthropic_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/cohere_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/deepseek_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/gemini_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/ollama_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/openrouter_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/perplexity_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_addons.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_brainstorm/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_brainstorm/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_brainstorm/recursive_brainstorm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/chunk_store.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/clusterer.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/flat_clusterer.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/persistence.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/tree_builder.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_feedback/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_feedback/feedback_loop.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_feedback/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_judge/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_judge/judge.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_judge/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/provider_router.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/query_classifier.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/anthropic_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/cohere_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/deepseek_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/gemini_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/llm_response_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/ollama_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/openai_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/openrouter_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/perplexity_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/voyage_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_retrieval/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_retrieval/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_retrieval/retriever.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_router/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_router/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_router/router.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_validator/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_validator/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_validator/validator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/hub/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/hub/agentic_prompts.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/hub/prompt_manager.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/messages_template.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/prompts/prompt_builder.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/apify_api.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/brainstorm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/email_functions.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/file_functions.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/file_loader.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/generic_loader.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/image_helpers.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/pandas_func.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/pattern_helpers.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/python_func.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/rapid_api.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/serp.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/text_chunker.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/tools/youtube.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/utils/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/utils/custom_verbose.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/local_vector_db.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/qdrant_vector_db.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/simpler_vector.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/vector_db.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/vectors/vector_providers.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/audio_merger.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/dialogue_generator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/audio_player.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/audio_recorder.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/live_voice_chat.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/audio_utils.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/providers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/providers/elevenlabs_convai.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/providers/openai_realtime.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/providers/realtime_response_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/realtime_voice_chat.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/wrappers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/wrappers/elevenlabs_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/providers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/providers/openai_stt.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/providers/stt_response_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/wrappers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/providers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/providers/elevenlabs_tts.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/providers/openai_tts.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/providers/tts_response_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/wrappers/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/wrappers/elevenlabs_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_dubbing/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_dubbing/audio_sync.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_dubbing/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_dubbing/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_dubbing/video_processor.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/base.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/caption_generator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/utils/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/utils/subtitle_formatter.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/utils/video_utils.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/voice_chat/__init__.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/voice_chat/conversation.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/voice_chat/models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/voice_chat/voice_chat.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM.egg-info/SOURCES.txt +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM.egg-info/dependency_links.txt +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM.egg-info/requires.txt +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM.egg-info/top_level.txt +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/setup.cfg +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_agent.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_agent_full.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_anthropic_web_search.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_arabic_validator.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_cohere.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_cohere_embeddings.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_comprehensive_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_embeddings_comprehensive.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_flow_comprehensive.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_brainstorm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_clustering_retrieval.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_feedback.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_judge.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_provider_router.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_llm_providers.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_nested_models.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_openrouter.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_openrouter_full_response.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pattern_extraction.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pattern_helpers.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_perplexity_pydantic.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_perplexity_web_search.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_production_vector_db.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pydantic_edge_cases.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pydantic_edge_cases_llm.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pydantic_structures.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_pydantic_vision.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_qdrant_comprehensive.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_qdrant_connection.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_qdrant_integration_live.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_real_llm_generation.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_reliable_fix.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_reliable_vision.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_router_simple.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_router_youtube_titles.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_unified_vector_interface.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_vision_anthropic.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_vision_openai.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_vision_quick.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_voyage_embeddings.py +0 -0
- {simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/tests/test_web_search_pydantic.py +0 -0
|
@@ -335,6 +335,8 @@ def example_value_for_type(field_type: Type, constraints: dict = None, _recursio
|
|
|
335
335
|
return 0.5 # Default to 0.5 instead of 0.0 to clearly show it's a float
|
|
336
336
|
elif field_type == bool:
|
|
337
337
|
return True
|
|
338
|
+
elif field_type == dict:
|
|
339
|
+
return {} # Plain dict type returns empty dict
|
|
338
340
|
else:
|
|
339
341
|
return "example_value" # More generic fallback value
|
|
340
342
|
elif origin == list: # It's a List
|
|
@@ -21,7 +21,7 @@ with open("README.md", encoding="utf-8") as f:
|
|
|
21
21
|
|
|
22
22
|
setup(
|
|
23
23
|
name="SimplerLLM",
|
|
24
|
-
version="0.3.3.
|
|
24
|
+
version="0.3.3.3",
|
|
25
25
|
author="Hasan Aboul Hasan",
|
|
26
26
|
author_email="hasan@learnwithhasan.com",
|
|
27
27
|
description="An easy-to-use Library for interacting with language models.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/google_image.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/openai_image.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/providers/stability_image.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/google_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/openai_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/image/generation/wrappers/stability_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/anthropic_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/cohere_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/deepseek_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/gemini_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/ollama_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/openai_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/openrouter_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm/wrappers/perplexity_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_brainstorm/recursive_brainstorm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/flat_clusterer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_clustering/tree_builder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_provider_router/provider_router.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/anthropic_llm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/llm_response_models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/openrouter_llm.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/language/llm_providers/perplexity_llm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/audio_merger.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/dialogue_generator/dialogue_generator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/audio_recorder.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/live_voice_chat/live_voice_chat.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/providers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/realtime_voice_chat.py
RENAMED
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/wrappers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/realtime_voice/wrappers/openai_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/stt/providers/stt_response_models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/providers/tts_response_models.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/tts/wrappers/elevenlabs_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/caption_generator.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.3.2 → simplerllm-0.3.3.3}/SimplerLLM/voice/video_transcription/utils/video_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|