diff --git a/doc/source/admin/galaxy_options.rst b/doc/source/admin/galaxy_options.rst index e30d8254f254..a2a077224750 100644 --- a/doc/source/admin/galaxy_options.rst +++ b/doc/source/admin/galaxy_options.rst @@ -5377,6 +5377,16 @@ :Type: str +~~~~~~~~~~~~~~~~ +``openai_model`` +~~~~~~~~~~~~~~~~ + +:Description: + OpenAI model to enable the wizard. +:Default: ``gpt-4o`` +:Type: str + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``enable_tool_recommendations`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -5670,3 +5680,6 @@ to the user. Currently only affects s3fs file sources. :Default: ``60`` :Type: int + + + diff --git a/lib/galaxy/config/sample/galaxy.yml.sample b/lib/galaxy/config/sample/galaxy.yml.sample index bbce0a77f214..d2da6d1723ca 100644 --- a/lib/galaxy/config/sample/galaxy.yml.sample +++ b/lib/galaxy/config/sample/galaxy.yml.sample @@ -1,21 +1,21 @@ # Galaxy is configured by default to be usable in a single-user development # environment. To tune the application for a multi-user production # environment, see the documentation at: -# +# # https://docs.galaxyproject.org/en/master/admin/production.html -# +# # Throughout this sample configuration file, except where stated otherwise, # uncommented values override the default if left unset, whereas commented # values are set to the default value. Relative paths are relative to the root # Galaxy directory. -# +# # Examples of many of these options are explained in more detail in the Galaxy # Community Hub. -# +# # https://galaxyproject.org/admin/config -# +# # Config hackers are encouraged to check there before asking for help. -# +# # Configuration for Gravity process manager. # ``uwsgi:`` section will be ignored if Galaxy is started via Gravity commands (e.g ``./run.sh``, ``galaxy`` or ``galaxyctl``). gravity: @@ -2886,6 +2886,9 @@ galaxy: # more?) #openai_api_key: null + # OpenAI model to enable the wizard. + #openai_model: gpt-4o + # Allow the display of tool recommendations in workflow editor and # after tool execution. If it is enabled and set to true, please # enable 'tool_recommendation_model_path' as well @@ -3011,3 +3014,4 @@ galaxy: # but outdated contents might be displayed to the user. Currently only # affects s3fs file sources. #file_source_listings_expiry_time: 60 + diff --git a/lib/galaxy/config/sample/tool_shed.yml.sample b/lib/galaxy/config/sample/tool_shed.yml.sample index bc995ed597d0..d0a8aa456ccc 100644 --- a/lib/galaxy/config/sample/tool_shed.yml.sample +++ b/lib/galaxy/config/sample/tool_shed.yml.sample @@ -429,3 +429,4 @@ tool_shed: # The value of this option will be resolved with respect to # . #datatypes_config_file: datatypes_conf.xml +