Re: Websockets RFC 6455

2024-07-24 Thread Tom Glod via use-livecode
I fed it the livecode reference manual ... i had a pdf of it, not sure where to find that now. Also the builder documentation from here https://livecode.com/apidocs/docs/guide.html#livecode-builder-language-reference I think I might have missed the top section of builder related guides. and the

Re: Websockets RFC 6455

2024-07-24 Thread Mike Kerner via use-livecode
what did you send to chatgpt to generate the LC expert model? On Wed, Jul 24, 2024 at 11:46 AM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Mike, > > I also asked it to check over each answer before i accepted it. > so it is essentially 2-shot instead of the usual 1. > T

Re: Websockets RFC 6455

2024-07-24 Thread Tom Glod via use-livecode
Hi Mike, I also asked it to check over each answer before i accepted it. so it is essentially 2-shot instead of the usual 1. The reason I added the script for httpd is so that it would not need to figure out correct syntax for socket connections, by having examples of the correct syntax. Yes, I su

Re: Websockets RFC 6455

2024-07-24 Thread Mike Kerner via use-livecode
so, for you, the trick was: * claude (opus) * supply some lc source code in a similar universe (curious why you did that) * supply the rfc, not just referencing the rfc anything else? On Tue, Jul 23, 2024 at 7:31 PM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Hey Mike, > >

Re: Websockets RFC 6455

2024-07-23 Thread Tom Glod via use-livecode
Hey Mike, I describe how I did it on the GitHub page. I find all llms work better when they have a starting point if you ask them just to start from nothing the performance will be significantly worse. Examples of correct responses are key so in this case I provided the source code for the httpd

Re: Websockets RFC 6455

2024-07-23 Thread Mike Kerner via use-livecode
i'd like to learn more about how you did this. i have had terrible luck getting any of the LLM's to generate reasonable LC code (including multiple attempts on this very topic). ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: Websockets RFC 6455

2024-07-19 Thread Tom Glod via use-livecode
10-4 On Fri, Jul 19, 2024 at 10:54 AM Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > see the issue i posted on the repo > > On Sat, Jul 13, 2024 at 12:20 PM Mike Kerner > wrote: > > > cool > > > > On Fri, Jul 12, 2024 at 9:06 PM Tom Glod via use-livecode < > > use-livecod

Re: Websockets RFC 6455

2024-07-19 Thread Mike Kerner via use-livecode
see the issue i posted on the repo On Sat, Jul 13, 2024 at 12:20 PM Mike Kerner wrote: > cool > > On Fri, Jul 12, 2024 at 9:06 PM Tom Glod via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Heyall, >> >> I wanted to test Anthropic's Claude Opus with Livecode on a real project. >> So

Re: Websockets RFC 6455

2024-07-13 Thread Mike Kerner via use-livecode
cool On Fri, Jul 12, 2024 at 9:06 PM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Heyall, > > I wanted to test Anthropic's Claude Opus with Livecode on a real project. > So I chose to worked with it to implement WebSocket's standard RFC 6455 > > Methodology is explained in

Websockets RFC 6455

2024-07-12 Thread Tom Glod via use-livecode
Heyall, I wanted to test Anthropic's Claude Opus with Livecode on a real project. So I chose to worked with it to implement WebSocket's standard RFC 6455 Methodology is explained in github page. It only had issue with 1 or 2 things, most code compiled straight from the generation. Very impressed