Searching from 2024-09-17 00:00:00 to 2024-09-17 23:59:59.999999.
Query completed in 0.65 seconds
[2024-09-17 00:47:13] --> Lucifer_arma_ has joined the channel
[2024-09-17 01:43:34] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| shit forgot to edit that i added it then hit the sack
[2024-09-17 01:43:34] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| shit forgot to edit that i added it then hit the sack
[2024-09-17 01:46:29] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| light themes hurt my eyes and since i spend a long time at the computer screen when i get off work dark themese help dim down the blue light
[2024-09-17 01:46:29] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| light themes hurt my eyes and since i spend a long time at the computer screen when i get off work dark themese help dim down the blue light
[2024-09-17 02:58:16] --> delinquent has joined the channel
[2024-09-17 02:58:17] --> JackSkellington has joined the channel
[2024-09-17 03:00:19] <-- Lucifer_arma_ has quit (Ping timeout: 480 seconds)
[2024-09-17 06:18:49] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| @syn_acc Do you know anything about openai functions? trying to make a ai that can think and reason before giving its response.
[2024-09-17 06:18:49] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| @syn_acc Do you know anything about openai functions? trying to make a ai that can think and reason before giving its response.
[2024-09-17 06:18:50] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| Kinda like the new chatgpt-o1-preview im just tired of the limit it has set
[2024-09-17 06:18:50] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| Kinda like the new chatgpt-o1-preview im just tired of the limit it has set
[2024-09-17 09:04:33] <armagetron-bridge> 07discord:syn_acc| Yeah so the theory is pretty simple
[2024-09-17 09:04:34] <armagetronbridge> 07discord:syn_acc| Yeah so the theory is pretty simple
[2024-09-17 09:04:34] <armagetron-bridge> 07discord:syn_acc| Give an endpoint, and the AI will selectively choose when to invoke the function (endpoint) based on user requests.
[2024-09-17 09:04:34] <armagetronbridge> 07discord:syn_acc| Give an endpoint, and the AI will selectively choose when to invoke the function (endpoint) based on user requests.
[2024-09-17 09:04:35] <armagetron-bridge> 07discord:syn_acc| the schema looks something like this
[2024-09-17 09:04:35] <armagetronbridge> 07discord:syn_acc| the schema looks something like this
[2024-09-17 09:04:36] <armagetron-bridge> 07discord:syn_acc| ```json
[2024-09-17 09:04:36] <armagetronbridge> 07discord:syn_acc| ```json
[2024-09-17 09:04:38] <armagetron-bridge> 07discord:syn_acc| {
[2024-09-17 09:04:38] <armagetronbridge> 07discord:syn_acc| {
[2024-09-17 09:04:39] <armagetron-bridge> 07discord:syn_acc| "name": "get_delivery_date",
[2024-09-17 09:04:39] <armagetronbridge> 07discord:syn_acc| "name": "get_delivery_date",
[2024-09-17 09:04:40] <armagetron-bridge> 07discord:syn_acc| "description": "Get the delivery date for a customer's order. Call this whenever you need to know the delivery date, for example when a customer asks 'Where is my package'",
[2024-09-17 09:04:40] <armagetronbridge> 07discord:syn_acc| "description": "Get the delivery date for a customer's order. Call this whenever you need to know the delivery date, for example when a customer asks 'Where is my package'",
[2024-09-17 09:04:41] <armagetron-bridge> 07discord:syn_acc| "parameters": {
[2024-09-17 09:04:42] <armagetronbridge> 07discord:syn_acc| "parameters": {
[2024-09-17 09:04:43] <armagetron-bridge> 07discord:syn_acc| "type": "object",
[2024-09-17 09:04:43] <armagetronbridge> 07discord:syn_acc| "type": "object",
[2024-09-17 09:04:44] <armagetron-bridge> 07discord:syn_acc| "properties": {
[2024-09-17 09:04:44] <armagetronbridge> 07discord:syn_acc| "properties": {
[2024-09-17 09:04:45] <armagetron-bridge> 07discord:syn_acc| "order_id": {
[2024-09-17 09:04:45] <armagetronbridge> 07discord:syn_acc| "order_id": {
[2024-09-17 09:04:47] <armagetron-bridge> 07discord:syn_acc| "type": "string",
[2024-09-17 09:04:47] <armagetronbridge> 07discord:syn_acc| "type": "string",
[2024-09-17 09:04:48] <armagetron-bridge> 07discord:syn_acc| "description": "The customer's order ID.",
[2024-09-17 09:04:48] <armagetronbridge> 07discord:syn_acc| "description": "The customer's order ID.",
[2024-09-17 09:04:49] <armagetron-bridge> 07discord:syn_acc| },
[2024-09-17 09:04:50] <armagetronbridge> 07discord:syn_acc| },
[2024-09-17 09:04:51] <armagetron-bridge> 07discord:syn_acc| },
[2024-09-17 09:04:51] <armagetronbridge> 07discord:syn_acc| },
[2024-09-17 09:04:52] <armagetron-bridge> 07discord:syn_acc| "required": ["order_id"],
[2024-09-17 09:04:52] <armagetronbridge> 07discord:syn_acc| "required": ["order_id"],
[2024-09-17 09:04:53] <armagetron-bridge> 07discord:syn_acc| "additionalProperties": false,
[2024-09-17 09:04:53] <armagetronbridge> 07discord:syn_acc| "additionalProperties": false,
[2024-09-17 09:04:54] <armagetron-bridge> 07discord:syn_acc| }
[2024-09-17 09:04:55] <armagetronbridge> 07discord:syn_acc| }
[2024-09-17 09:04:56] <armagetron-bridge> 07discord:syn_acc| }
[2024-09-17 09:04:56] <armagetronbridge> 07discord:syn_acc| }
[2024-09-17 09:04:57] <armagetron-bridge> 07discord:syn_acc| ```
[2024-09-17 09:04:57] <armagetronbridge> 07discord:syn_acc| ```
[2024-09-17 09:04:58] <armagetron-bridge> 07discord:syn_acc| So with this you could send a request to the AI like "what are the details of jims last order"
[2024-09-17 09:04:59] <armagetronbridge> 07discord:syn_acc| So with this you could send a request to the AI like "what are the details of jims last order"
[2024-09-17 09:05:00] <armagetron-bridge> 07discord:syn_acc| The AI would go and invoke this "function" (just an API route somewhere) and it would parse the response into an object like
[2024-09-17 09:05:00] <armagetronbridge> 07discord:syn_acc| The AI would go and invoke this "function" (just an API route somewhere) and it would parse the response into an object like
[2024-09-17 09:05:01] <armagetron-bridge> 07discord:syn_acc| ```json
[2024-09-17 09:05:01] <armagetronbridge> 07discord:syn_acc| ```json
[2024-09-17 09:05:02] <armagetron-bridge> 07discord:syn_acc| "order_id": {
[2024-09-17 09:05:02] <armagetronbridge> 07discord:syn_acc| "order_id": {
[2024-09-17 09:05:04] <armagetron-bridge> 07discord:syn_acc| "type": "string",
[2024-09-17 09:05:04] <armagetronbridge> 07discord:syn_acc| "type": "string",
[2024-09-17 09:05:05] <armagetron-bridge> 07discord:syn_acc| "description": "The customer's order ID.",
[2024-09-17 09:05:05] <armagetronbridge> 07discord:syn_acc| "description": "The customer's order ID.",
[2024-09-17 09:05:06] <armagetron-bridge> 07discord:syn_acc| },
[2024-09-17 09:05:07] <armagetronbridge> 07discord:syn_acc| },
[2024-09-17 09:05:07] <armagetron-bridge> 07discord:syn_acc| ```
[2024-09-17 09:05:08] <armagetronbridge> 07discord:syn_acc| ```
[2024-09-17 09:05:09] <armagetron-bridge> 07discord:syn_acc| https://cdn.discordapp.com/attachments/209759416604426242/1285587199034658816/function-calling-diagram.png?ex=66eacfe1&is=66e97e61&hm=5062691019e41d193a121505496d70187a6420150adc0597da85f8835dca9b5d&
[2024-09-17 09:05:09] <armagetronbridge> 07discord:syn_acc| https://cdn.discordapp.com/attachments/209759416604426242/1285587199034658816/function-calling-diagram.png?ex=66eacfe1&is=66e97e61&hm=5062691019e41d193a121505496d70187a6420150adc0597da85f8835dca9b5d&
[2024-09-17 09:05:25] <armagetronbridge> 07discord:syn_acc| It doesn't interact much with "reasoning" in the way o1 does. It just provides a way of getting the agent to have additional context regarding a specific operation
[2024-09-17 09:05:25] <armagetron-bridge> 07discord:syn_acc| It doesn't interact much with "reasoning" in the way o1 does. It just provides a way of getting the agent to have additional context regarding a specific operation
[2024-09-17 09:06:37] <armagetron-bridge> 07discord:syn_acc| Having said that i've seen people on X have fairly promising results by implementing CoT (chain of thought) by forcing the LLM to first come up with a plan and to then use that plan for execution instead of executing right away. This could probably be achieved with functions, if you give it something like (if this task is sufficiently complex, use this function to get additional logic and reason)
[2024-09-17 09:06:38] <armagetronbridge> 07discord:syn_acc| Having said that i've seen people on X have fairly promising results by implementing CoT (chain of thought) by forcing the LLM to first come up with a plan and to then use that plan for execution instead of executing right away. This could probably be achieved with functions, if you give it something like (if this task is sufficiently complex, use this function to get additional logic and reason)
[2024-09-17 09:07:01] <armagetron-bridge> 07discord:syn_acc| Ignore the naysayers talking about themes and other non important stuff. Just keep building :thumbs_up_exciting:
[2024-09-17 09:07:01] <armagetronbridge> 07discord:syn_acc| Ignore the naysayers talking about themes and other non important stuff. Just keep building :thumbs_up_exciting:
[2024-09-17 10:09:55] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| json{
[2024-09-17 10:09:55] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| json{
[2024-09-17 10:09:56] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "name": "Reasoning",
[2024-09-17 10:09:56] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "name": "Reasoning",
[2024-09-17 10:09:57] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "Provides thorough reasoning and step-by-step explanations for a given question or problem.",
[2024-09-17 10:09:57] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "Provides thorough reasoning and step-by-step explanations for a given question or problem.",
[2024-09-17 10:09:58] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "parameters": {
[2024-09-17 10:09:58] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "parameters": {
[2024-09-17 10:10:00] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "object",
[2024-09-17 10:10:00] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "object",
[2024-09-17 10:10:01] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "properties": {
[2024-09-17 10:10:01] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "properties": {
[2024-09-17 10:10:02] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "question": {
[2024-09-17 10:10:02] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "question": {
[2024-09-17 10:10:04] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:04] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:05] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The question or problem that requires detailed reasoning."
[2024-09-17 10:10:05] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The question or problem that requires detailed reasoning."
[2024-09-17 10:10:06] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:06] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:07] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "depth": {
[2024-09-17 10:10:08] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "depth": {
[2024-09-17 10:10:09] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:09] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:10] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["brief", "detailed", "comprehensive"],
[2024-09-17 10:10:10] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["brief", "detailed", "comprehensive"],
[2024-09-17 10:10:11] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The desired depth of the explanation."
[2024-09-17 10:10:11] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The desired depth of the explanation."
[2024-09-17 10:10:13] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:13] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:14] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "style": {
[2024-09-17 10:10:14] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "style": {
[2024-09-17 10:10:15] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:15] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:17] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["formal", "informal", "technical", "simple"],
[2024-09-17 10:10:17] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["formal", "informal", "technical", "simple"],
[2024-09-17 10:10:18] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The style in which the explanation should be presented."
[2024-09-17 10:10:18] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The style in which the explanation should be presented."
[2024-09-17 10:10:19] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:19] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:20] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "include_examples": {
[2024-09-17 10:10:21] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "include_examples": {
[2024-09-17 10:10:22] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "boolean",
[2024-09-17 10:10:22] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "boolean",
[2024-09-17 10:10:23] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "Whether to include examples in the explanation."
[2024-09-17 10:10:23] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "Whether to include examples in the explanation."
[2024-09-17 10:10:24] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:24] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:26] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "language": {
[2024-09-17 10:10:26] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "language": {
[2024-09-17 10:10:27] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:27] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:28] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The language code for the explanation (e.g., 'en' for English)."
[2024-09-17 10:10:28] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "description": "The language code for the explanation (e.g., 'en' for English)."
[2024-09-17 10:10:30] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:30] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| },
[2024-09-17 10:10:31] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "audience_level": {
[2024-09-17 10:10:31] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "audience_level": {
[2024-09-17 10:10:32] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:32] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "type": "string",
[2024-09-17 10:10:33] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["beginner", "intermediate", "expert"],
[2024-09-17 10:10:34] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| "enum": ["beginner", "intermediate", "expert"],
[2024-09-17 10:10:35] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| @syn_acc is this the correct way of going about it?
[2024-09-17 10:10:35] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| @syn_acc is this the correct way of going about it?
[2024-09-17 10:18:44] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1285605866174676993/message.python?ex=66eae143&is=66e98fc3&hm=275cc797c2e798b4948978b71d044bcb3bafbce3c12f7c2aaf8f111ccc174193&
[2024-09-17 10:18:44] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1285605866174676993/message.python?ex=66eae143&is=66e98fc3&hm=275cc797c2e798b4948978b71d044bcb3bafbce3c12f7c2aaf8f111ccc174193&
[2024-09-17 16:42:50] <-- Juest has quit (Ping timeout: 265 seconds)
[2024-09-17 16:43:55] <-- Juest has quit (Ping timeout: 480 seconds)
[2024-09-17 16:51:41] --> Juest has joined the channel
[2024-09-17 16:54:40] --> Juest has joined the channel
[2024-09-17 18:16:29] <-- delinquent has quit (Remote host closed the connection)
[2024-09-17 18:16:29] <-- JackSkellington has quit (Remote host closed the connection)
[2024-09-17 23:42:39] --> Lucifer_arma_ has joined the channel
View entire month
DISCLAIMER: These logs of public chat may contain some content which may not be appropriate for all audiences. Use at your own risk.
Logs from 2006-2009 pulled from wrtlprnft
Format changes at: 2015-08-25, 2017-02-20, and 2020-03-23. Times (2015 and later) should be Eastern.
• Website was created by nelg
• Design:
» Layout is loosely based on an old design by Durf.
» Icons on the tools page were originally by Royce, new icons added will try to follow some of the design language.
» Various other icon selections include icons from Crystal, crystalsvg, oxygen, and breeze icon themes.
» Other icons: fontawesome
is a site that has tools, maps, and other various items. It orignally only existed as a server control panel, but I slowly began adding stuff such as a homepage and tools.