- When generating new TypeScript code, please follow the existing coding style.
- Ensure all new functions and classes have JSDoc comments.
- Prefer functional programming paradigms where appropriate.
- All code should be compatible with TypeScript 5.0 and Node.js 18+.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2025-06-30T14:56:44.060+0530 info [email protected]/service.go:199 Setting up own telemetry... {"resource": {"service.instance.id": "2ed96a63-2173-4153-afaa-4439d86e151f", "service.name": "otelcol-contrib", "service.version": "0.128.0"}} | |
2025-06-30T14:56:44.060+0530 info [email protected]/service.go:259 Starting otelcol-contrib... {"resource": {"service.instance.id": "2ed96a63-2173-4153-afaa-4439d86e151f", "service.name": "otelcol-contrib", "service.version": "0.128.0"}, "Version": "0.128.0", "NumCPU": 10} | |
2025-06-30T14:56:44.060+0530 info extensions/extensions.go:41 Starting extensions... {"resource": {"service.instance.id": "2ed96a63-2173-4153-afaa-4439d86e151f", "service.name": "otelcol-contrib", "service.version": "0.128.0"}} | |
2025-06-30T14:56:44.068+0530 info [email protected]/otlp.go:117 Starting GRPC server {"resource": {"service.instance.id": "2ed96a63-2173-4153-afaa-4439d86e151f", "service.name": "otelcol-contrib", "service.version": "0.128.0"}, "otelcol.component.id": "otlp", "otelcol.component.kin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEBUG] CLI: Delegating hierarchical memory load to server for CWD: /Users/romin/gemini-cli-projects | |
[DEBUG] [MemoryDiscovery] Loading server hierarchical memory for CWD: /Users/romin/gemini-cli-projects | |
[DEBUG] [MemoryDiscovery] Searching for GEMINI.md starting from CWD: /Users/romin/gemini-cli-projects | |
[DEBUG] [MemoryDiscovery] User home directory: /Users/romin | |
[DEBUG] [MemoryDiscovery] Global GEMINI.md not found or not readable: /Users/romin/.gemini/GEMINI.md | |
[DEBUG] [MemoryDiscovery] Determined project root: None | |
[DEBUG] [MemoryDiscovery] Checking for GEMINI.md in (upward scan): /Users/romin/gemini-cli-projects | |
[DEBUG] [MemoryDiscovery] Upward GEMINI.md not found or not readable in: /Users/romin/gemini-cli-projects | |
[DEBUG] [MemoryDiscovery] Checking for GEMINI.md in (upward scan): /Users/romin | |
[DEBUG] [MemoryDiscovery] Upward GEMINI.md not found or not readable in: /Users/romin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Text Summarizer</title> | |
<style> | |
body { | |
font-family: sans-serif; | |
} | |
textarea { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Issue Tracker</title> | |
<style> | |
table { | |
border-collapse: collapse; | |
width: 100%; | |
} | |
th, td { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from autogen import GroupChat | |
from autogen import GroupChatManager | |
import autogen | |
import pprint | |
config_list_gemini = autogen.config_list_from_json("model_config.json") | |
user_proxy = autogen.UserProxyAgent( | |
name="User_proxy", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from autogen import ConversableAgent | |
import autogen | |
config_list_gemini = autogen.config_list_from_json("model_config.json") | |
article_processor_agent = ConversableAgent( | |
name="Exam Paper Processor Agent", | |
llm_config = {"config_list" : config_list_gemini}, | |
human_input_mode = "NEVER", | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from autogen import ConversableAgent | |
import autogen | |
import pprint | |
config_list_gemini = autogen.config_list_from_json("model_config.json") | |
article_processor_agent = ConversableAgent( | |
name="Article Processor Agent", | |
llm_config = {"config_list" : config_list_gemini}, | |
human_input_mode = "NEVER", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------ summary ------ | |
{'audio': None, | |
'content': 'Albert Einstein\'s quote "Strive not to be a success, but rather ' | |
'to be of value" encourages a shift from seeking external ' | |
'validation to making a positive impact on the world. It ' | |
'emphasizes intrinsic motivation, long-term contributions, and the ' | |
'importance of defining "value" in a way that aligns with personal ' | |
'passions and goals. The quote transcends specific professions and ' | |
'can be applied to various fields, prompting businesses to ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from autogen import ConversableAgent | |
import autogen | |
config_list_gemini = autogen.config_list_from_json("model_config.json") | |
quote_writer = ConversableAgent( | |
name="Quote Generator", | |
system_message="Your task is to provide famous quotes", | |
llm_config = {"config_list" : config_list_gemini}, | |
code_execution_config = False, |
NewerOlder