SimplerLLM 0.3.2.6__tar.gz → 0.3.2.7__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.2.6 → simplerllm-0.3.2.7}/PKG-INFO +1 -1
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/google_image.py +12 -8
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM.egg-info/PKG-INFO +1 -1
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/setup.py +1 -1
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/LICENSE +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/README.md +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/image_response_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/openai_image.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/stability_image.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/google_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/stability_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/embeddings.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/flow/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/flow/flow.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/flow/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/flow/tool_registry.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/exceptions.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/input_guardrails/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/input_guardrails/pii_detection.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/input_guardrails/prompt_injection.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/input_guardrails/topic_filter.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/output_guardrails/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/output_guardrails/content_safety.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/output_guardrails/format_validator.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/output_guardrails/length_validator.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/output_guardrails/pii_detection.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/guardrails/wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/reliable.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/anthropic_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/cohere_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/deepseek_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/gemini_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/ollama_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/openrouter_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_addons.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_brainstorm/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_brainstorm/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_brainstorm/recursive_brainstorm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/chunk_store.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/clusterer.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/flat_clusterer.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/persistence.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/tree_builder.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_feedback/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_feedback/feedback_loop.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_feedback/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_judge/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_judge/judge.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_judge/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/provider_router.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/query_classifier.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/anthropic_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/cohere_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/deepseek_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/gemini_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/llm_response_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/ollama_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/openai_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/openrouter_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/voyage_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_retrieval/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_retrieval/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_retrieval/retriever.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_router/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_router/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_router/router.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/hub/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/hub/agentic_prompts.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/hub/prompt_manager.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/messages_template.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/prompts/prompt_builder.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/apify_api.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/brainstorm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/email_functions.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/file_functions.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/file_loader.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/generic_loader.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/image_helpers.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/json_helpers.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/pandas_func.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/pattern_helpers.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/python_func.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/rapid_api.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/serp.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/text_chunker.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/tools/youtube.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/utils/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/utils/custom_verbose.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/local_vector_db.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/qdrant_vector_db.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/simpler_vector.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/vector_db.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/vectors/vector_providers.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/audio_merger.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/dialogue_generator.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/audio_player.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/audio_recorder.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/live_voice_chat.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/audio_utils.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/providers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/providers/elevenlabs_convai.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/providers/openai_realtime.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/providers/realtime_response_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/realtime_voice_chat.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/wrappers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/wrappers/elevenlabs_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/providers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/providers/openai_stt.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/providers/stt_response_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/wrappers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/stt/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/providers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/providers/elevenlabs_tts.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/providers/openai_tts.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/providers/tts_response_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/wrappers/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/wrappers/elevenlabs_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/wrappers/openai_wrapper.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_dubbing/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_dubbing/audio_sync.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_dubbing/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_dubbing/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_dubbing/video_processor.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/base.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/caption_generator.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/utils/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/utils/subtitle_formatter.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/utils/video_utils.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/voice_chat/__init__.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/voice_chat/conversation.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/voice_chat/models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/voice_chat/voice_chat.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM.egg-info/SOURCES.txt +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM.egg-info/dependency_links.txt +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM.egg-info/requires.txt +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM.egg-info/top_level.txt +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/setup.cfg +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_agent.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_agent_full.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_cohere.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_cohere_embeddings.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_comprehensive_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_embeddings_comprehensive.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_flow_comprehensive.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_llm_brainstorm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_llm_clustering_retrieval.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_llm_feedback.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_llm_judge.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_llm_provider_router.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_nested_models.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_openrouter.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_openrouter_full_response.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_pattern_extraction.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_pattern_helpers.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_production_vector_db.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_pydantic_edge_cases.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_pydantic_edge_cases_llm.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_pydantic_structures.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_qdrant_comprehensive.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_qdrant_connection.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_qdrant_integration_live.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_real_llm_generation.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_router_simple.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_router_youtube_titles.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_unified_vector_interface.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_vision_anthropic.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_vision_openai.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_vision_quick.py +0 -0
- {simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/tests/test_voyage_embeddings.py +0 -0
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/google_image.py
RENAMED
|
@@ -174,13 +174,15 @@ def generate_image(
|
|
|
174
174
|
]
|
|
175
175
|
|
|
176
176
|
# Configure generation with both IMAGE and TEXT modalities
|
|
177
|
+
# image_size only supported by Gemini 3+ models
|
|
178
|
+
image_config_params = {"aspect_ratio": aspect_ratio}
|
|
179
|
+
if "gemini-3" in model_name.lower():
|
|
180
|
+
image_config_params["image_size"] = resolution
|
|
181
|
+
|
|
177
182
|
generate_content_config = types.GenerateContentConfig(
|
|
178
183
|
response_modalities=["IMAGE", "TEXT"],
|
|
179
184
|
temperature=1.0,
|
|
180
|
-
image_config=types.ImageConfig(
|
|
181
|
-
aspect_ratio=aspect_ratio,
|
|
182
|
-
image_size=resolution,
|
|
183
|
-
),
|
|
185
|
+
image_config=types.ImageConfig(**image_config_params),
|
|
184
186
|
)
|
|
185
187
|
|
|
186
188
|
image_data = None
|
|
@@ -437,13 +439,15 @@ def edit_image(
|
|
|
437
439
|
]
|
|
438
440
|
|
|
439
441
|
# Configure generation with lower temperature for consistency
|
|
442
|
+
# image_size only supported by Gemini 3+ models
|
|
443
|
+
image_config_params = {"aspect_ratio": aspect_ratio}
|
|
444
|
+
if "gemini-3" in model_name.lower():
|
|
445
|
+
image_config_params["image_size"] = resolution
|
|
446
|
+
|
|
440
447
|
generate_content_config = types.GenerateContentConfig(
|
|
441
448
|
response_modalities=["IMAGE", "TEXT"],
|
|
442
449
|
temperature=0.8, # Lower temperature for editing to maintain consistency
|
|
443
|
-
image_config=types.ImageConfig(
|
|
444
|
-
aspect_ratio=aspect_ratio,
|
|
445
|
-
image_size=resolution,
|
|
446
|
-
),
|
|
450
|
+
image_config=types.ImageConfig(**image_config_params),
|
|
447
451
|
)
|
|
448
452
|
|
|
449
453
|
edited_image_data = None
|
|
@@ -20,7 +20,7 @@ with open("README.md", encoding="utf-8") as f:
|
|
|
20
20
|
|
|
21
21
|
setup(
|
|
22
22
|
name="SimplerLLM",
|
|
23
|
-
version="0.3.2.
|
|
23
|
+
version="0.3.2.7",
|
|
24
24
|
author="Hasan Aboul Hasan",
|
|
25
25
|
author_email="hasan@learnwithhasan.com",
|
|
26
26
|
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
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/openai_image.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/providers/stability_image.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/google_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/image/generation/wrappers/openai_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/anthropic_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/cohere_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/deepseek_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/gemini_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/ollama_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/openai_wrapper.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm/wrappers/openrouter_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_brainstorm/recursive_brainstorm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_clustering/flat_clusterer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_provider_router/provider_router.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/anthropic_llm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/llm_response_models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/language/llm_providers/openrouter_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
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/audio_merger.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/dialogue_generator/dialogue_generator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/live_voice_chat/audio_recorder.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/providers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/realtime_voice_chat.py
RENAMED
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/realtime_voice/wrappers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/tts/providers/tts_response_models.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/caption_generator.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/SimplerLLM/voice/video_transcription/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{simplerllm-0.3.2.6 → simplerllm-0.3.2.7}/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
|