Class: LightGptProxy::Templates::CopilotTemplate
- Inherits:
-
LightGptProxy::Template
- Object
- LightGptProxy::Template
- LightGptProxy::Templates::CopilotTemplate
- Defined in:
- lib/light_gpt_proxy/templates/copilot_template.rb
Instance Attribute Summary
Attributes inherited from LightGptProxy::Template
Class Method Summary collapse
- .optional ⇒ Object
- .required ⇒ Object
-
.template ⇒ Object
rubocop:disable Metrics/MethodLength.
Methods inherited from LightGptProxy::Template
#initialize, #save, #to_h, #to_yaml
Constructor Details
This class inherits a constructor from LightGptProxy::Template
Class Method Details
.optional ⇒ Object
12 13 14 15 16 17 |
# File 'lib/light_gpt_proxy/templates/copilot_template.rb', line 12 def self.optional { version: 'github-copilot', system: "\nYou are an AI programming assistant.\nFollow the user's requirements carefully & to the letter.\nYour expertise is strictly limited to software development topics.\nKeep your answers short and impersonal.\n\nYou can answer general programming questions and perform the following tasks:\n* Ask a question about the files in your current workspace\n* Explain how the selected code works\n* Generate unit tests for the selected code\n* Propose a fix for the problems in the selected code\n* Scaffold code for a new workspace\n* Create a new Jupyter Notebook\n* Find relevant code to your query\n* Ask questions about VS Code\n* Generate query parameters for workspace search\n* Ask about VS Code extension development\n* Ask how to do something in the terminal\nYou use the GPT-3.5-TURBO version of OpenAI's GPT models.\nFirst think step-by-step - describe your plan for what to build in pseudocode, written out in great detail.\nThen output the code in a single code block.\nMinimize any other prose.\nUse Markdown formatting in your answers.\nMake sure to include the programming language name at the start of the Markdown code blocks.\nAvoid wrapping the whole response in triple backticks.\nYou can only give one reply for each conversation turn." # rubocop:disable Layout/LineLength } end |
.required ⇒ Object
8 9 10 |
# File 'lib/light_gpt_proxy/templates/copilot_template.rb', line 8 def self.required %i[key] end |
.template ⇒ Object
rubocop:disable Metrics/MethodLength
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/light_gpt_proxy/templates/copilot_template.rb', line 19 def self.template # rubocop:disable Metrics/MethodLength { 'api_key' => '<%= attributes[:key] %>', 'header_options' => '<%= attributes[:version] ? {"Content-Type" => "application/json", "X-GitHub-Api-Version": "attributes[:version]"} : {"Content-Type" => "application/json"} %>', # rubocop:disable Layout/LineLength 'host' => 'https://api.githubcopilot.com', 'endpoints' => { 'completions' => { 'path' => 'chat/completions', 'method' => 'POST', 'defaults' => { 'model' => 'gpt-3.5-turbo', 'messages' => [ { 'role' => 'system', 'content' => '<%= attributes[:system] %>' }, { 'role' => 'user', 'content' => 'hello' } ], 'max_tokens' => 4096, 'temperature' => 0.1, 'top_p' => 1, 'n' => 1, 'stream' => false }, 'body_schema' => { 'model' => { 'type' => 'string', 'required' => true, 'default' => 'gpt-3.5-turbo', 'options' => ['gpt-3.5-turbo'] }, 'messages' => { 'type' => 'array', 'schema' => { 'role' => { 'type' => 'string', 'required' => true }, 'content' => { 'type' => 'string', 'required' => true, 'default' => 'user', 'options' => %w[user system assistant] } }, 'default' => [{ 'role' => 'system', 'content' => '<%= attributes[:system] %>' }], 'required' => true }, 'max_tokens' => { 'type' => 'integer', 'required' => false, 'default' => 4096 }, 'temperature' => { 'type' => 'float', 'required' => false, 'default' => 0.1 } } } } }.freeze end |