Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature containerized #14

Merged
merged 21 commits into from
Mar 22, 2024
Merged

Feature containerized #14

merged 21 commits into from
Mar 22, 2024

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    f5fcc2a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62c2490 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Configuration menu
    Copy the full SHA
    c568bba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    57f2c68 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    388d4f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5737583 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c1d0540 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Adjust default PORT and COLUMN_NAME values in docker-compose and enha…

    …nce port handling in CLI scripts
    dockhardman committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    768ab86 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f6e27d View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    2d5bacd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fe21192 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    42bc71b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fbe30c2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d531034 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    db717d6 View commit details
    Browse the repository at this point in the history
  7. feat(groq): add more model deploys and support custom model deploys

    - Add additional ModelDeploy instances for Llama2-70B and Mixtral-8x7B models
    - Allow specifying custom model deployments in GroqOpenaiAction constructor
    - Set _model_deploys attribute based on provided or default model deployments
    - Import Sequence type hint from typing module
    dockhardman committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    6458006 View commit details
    Browse the repository at this point in the history
  8. Add support for more OpenAI models and remove frequency_penalty when …

    …set to 0
    
    The git diff shows the following changes:
    
    1. Added several new OpenAI models to the ModelDeploy list, including various versions of GPT-3.5, GPT-4, text embeddings, moderation models, and text-to-speech models.
    
    2. In the __init__ method, added a check to remove the "frequency_penalty" parameter from kwargs if its value is 0.0.
    
    3. In the chat_stream method, moved the removal of the "stream" parameter from kwargs before validating the model. Also added the same check for "frequency_penalty" as in the __init__ method.
    
    The commit comment summarizes these changes as adding support for more OpenAI models and removing the "frequency_penalty" parameter when its value is set to 0.
    dockhardman committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    7bb5465 View commit details
    Browse the repository at this point in the history
  9. 1. Add additional Perplexity AI model deploys to the model_deploys

    …tuple, including models like codellama, llama-2, mistral, mixtral, pplx, and sonar variants.
    
    2. Modify the `__init__` method to accept an optional `model_deploys` parameter, allowing the default model list to be overridden when initializing the `PerplexityAction` class.
    
    3. Update the `__init__` method to use the provided `model_deploys` sequence if available, otherwise fallback to the default `self.model_deploys` tuple.
    
    4. Minor import change to include `Sequence` from the `typing` module.
    dockhardman committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    a27e085 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f87dfd2 View commit details
    Browse the repository at this point in the history
  11. feat(llm): add languru-llm-pplx and languru-llm-groq services

    Add languru-llm-pplx service for Perplexity (pplx) integration
    Configure environment variables, ports, volumes, and dependencies
    Associate with all and pplx profiles
    Add languru-llm-groq service for Groq integration
    Configure environment variables, ports, volumes, and dependencies
    Associate with all and groq profiles
    dockhardman committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    d035b93 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9b20f7d View commit details
    Browse the repository at this point in the history