-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.toml
75 lines (63 loc) · 2.11 KB
/
settings.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# settings.toml
# Prompt for the AI assistant
prompt = """
You are an AI assistant building summaries of web links and text. You will visit any web links found in the text and integrate
a summary with web citations, aiming for up to two citations explicitly returned in context as raw web hyperlinks.
Ensure to return web links as citations separated by new lines.
You should aim to select one or more of these topics in this form appropriate to the created summary,
embedding the topic in Logseq double square brackets once in the returned text.
"""
[github]
github_access_token = "default_github_token"
github_owner = "default_owner"
github_repo = "default_repo"
github_directory = "default_directory"
[ragflow]
ragflow_api_key = "default_ragflow_key"
ragflow_api_base_url = "http://192.168.0.51/v1/"
[perplexity]
perplexity_api_key = "default_perplexity_key"
perplexity_model = "default_model"
perplexity_api_base_url = "default_perplexity_url"
perplexity_max_tokens = 4096
perplexity_temperature = 0.7
perplexity_top_p = 1.0
perplexity_presence_penalty = 0.0
perplexity_frequency_penalty = 0.0
[openai]
openai_api_key = "default_openai_key"
openai_base_url = "wss://api.openai.com/v1/realtime?model=gpt-4o-realtime-preview-2024-10-01"
# Default configurations (can be overridden by environment variables)
[default]
max_concurrent_requests = 5
max_retries = 3
retry_delay = 5
api_client_timeout = 30
[visualization]
node_color = "0x1A0B31"
edge_color = "0xff0000"
hologram_color = "0xFFD700"
node_size_scaling_factor = 5
hologram_scale = 10
hologram_opacity = 0.1
edge_opacity = 0.7
label_font_size = 10
fog_density = 0.002
# Force-directed graph settings
force_directed_iterations = 100
force_directed_repulsion = 10.0
force_directed_attraction = 0.01
# Separate bloom configurations
[bloom]
# Bloom settings for nodes
node_bloom_strength = 0.1
node_bloom_radius = 0.1
node_bloom_threshold = 0.0
# Bloom settings for edges
edge_bloom_strength = 0.2
edge_bloom_radius = 0.3
edge_bloom_threshold = 0.0
# Bloom settings for environmental elements
environment_bloom_strength = 0.5
environment_bloom_radius = 0.1
environment_bloom_threshold = 0.0