File size: 1,078 Bytes
767bf19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cdb8cba
767bf19
 
 
 
 
070addd
1849a87
070addd
 
1849a87
070addd
 
1849a87
 
c62d397
1849a87
767bf19
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
name: "OpenAIChatGPT4"
description: "A General OpenAI GPT4 Chatbot implemented as an AtomicFlow"

model_name: "gpt-4"
generation_parameters:
  n: 1
  max_tokens: 3000
  temperature: 0.3

  model_kwargs:
    top_p: 0.2
    frequency_penalty: 0
    presence_penalty: 0

system_message_prompt_template:
  _target_: langchain.PromptTemplate
  template: |2-
    You are a helpful assistant.

  input_variables: []
  template_format: jinja2

human_message_prompt_template:
  _target_: langchain.PromptTemplate
  template: "{{query}}"
  input_variables:
    - "query"
  template_format: jinja2

query_message_prompt_template:
  _target_: langchain.PromptTemplate
  template: |2-
    {{query}}

  input_variables:
    - "query" # # "human_input"
  template_format: jinja2

keep_raw_response: False

output_data_transformations:
  - _target_: flows.data_transformations.RegexFirstOccurrenceExtractor
    regex: '(.*)'
    input_key: "raw_response"
    output_key: "response"
    strip: True
    assert_unique: True


input_keys:
  - "query" # "human_input"

output_keys:
  - "response"