sevzas
sevzas
here is the stacktrace where it hangs ``` mscorlib.dll!System.IO.MemoryStream.WriteByte(byte value) + 0x9a bytes AE.Net.Mail.dll!AE.Net.Mail.Utilities.ReadLine(System.IO.Stream stream = {System.IO.MemoryStream}, ref int maxLength = 0, System.Text.Encoding encoding = {System.Text.SBCSCodePageEncoding}) + 0x17c bytes AE.Net.Mail.dll!AE.Net.Mail.MailMessage.ParseMime(System.IO.Stream...
Smiley22, That's what I thought also. But if you look carefully at section 6.4.4 you'll see: ``` ON SENTBEFORE SENTSINCE SINCE ``` And then if you look in the "formal...
[continuing previous post / accidentally posted] So it's pretty explicit that the _format_ of the parameter of any of the clauses ON SENTBEFORE SENTSINCE SINCE is formatted as dd-MMM-yyyy or...
@bhavikac it appears that in the IMAP spec RFC 3501 time is specified as HH:mm:ss zzzzz where HH is the 24 hour time, zzzzz is the timezone expressed as +/-...
I see in v1.37 the following properties were added to AssistantRequestBase: Temperature, TopP and ResponseFormat so I can create an assistant and specify the new fields. But I don't see...
Additionally I noticed that some OpenAI-supported parameters are missing from the Forge.OpenAI code in the areas of Threads and Runs: CreateThreadAndRunRequest - https://platform.openai.com/docs/api-reference/runs/createThreadAndRun CreateThreadRequest - https://platform.openai.com/docs/api-reference/threads/createThread CreateRunRequest - https://platform.openai.com/docs/api-reference/runs/createRun The...
I agree, there are many changes related to Assistants API for v2. Thank you for your hard work, Zoltan.
I tried v1.41 ... There are build errors in my code because OpenAIService.CreateService(OpenAIOptions) has been removed. Can you put this factory method back? I don't use DI so I can't...
I managed to create an instance of OpenAIService based on Playground -> MultipleApiKeyUsage -> Program.cs, line 29 - 33. However, this code is cryptic/complicated for developers that want a quick,...
I switched to the new CreateService() signature that you added. I confirmed that JSON DeSerialization of Forge.OpenAI.Models.Messages.MessageData is fixed so my code is working now with 1.43. Thank you.