Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

14 Zeilen
1.1 KiB

  1. #jinja2: lstrip_blocks: True
  2. base_url: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_base_url | to_json }}
  3. api_key: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_api_key | to_json }}
  4. {% if matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_enabled %}
  5. text_generation:
  6. model_id: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_model_id | to_json }}
  7. prompt: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_prompt | to_json }}
  8. temperature: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_temperature | to_json }}
  9. max_response_tokens: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_max_response_tokens | int | to_json }}
  10. max_context_tokens: {{ matrix_authentication_service_config_agents_static_definitions_mistral_config_text_generation_max_context_tokens | int | to_json }}
  11. {% endif %}