Seneste nyt
23. december 2024Dear Customers,
As the holiday season approaches, we want to take a moment to express our heartfelt gratitude for your trust and partnership throughout the year. It has been an honor to assist you in migrating your MS-Access applications to modern Web Apps, empowering your business with greater flexibility, efficiency, and accessibility.
At Antrow Software, we take great pride in helping our customers transition to innovative, web-based solutions. Your success is what drives us, and we are genuinely thankful to be part of your journey.
Looking back on the year, we are inspired by the incredible transformations we’ve achieved together. From seamless migrations to delivering customized web-based platforms, it’s been a pleasure to help you unlock the full potential of your business data.
As we look forward to 2025, we are excited to continue supporting you with our expertise and dedication. Your trust means everything to us, and we are committed to providing exceptional service in the years ahead.
Wishing you, your team, and your loved ones a joyous holiday season and a prosperous New Year! ????
Warm regards,
The Antrow Software Team
P.S. If you have any upcoming projects or ideas for 2025, we’d love to hear about them! Let’s make next year even more successful together. ??

Kundehistorier
28. februar 2023Forfatter: Antrow SoftwareJane driver en lille detailforretning, der har specialiseret sig i håndlavede smykker. Da hun startede sin forretning, brugte hun en kombination af regneark og papirfiler til at administrere sin lagerbeholdning og sit salg. Da hendes virksomhed voksede, indså hun dog hurtigt, at denne metode ikke længere var bæredygtig.
Efter lidt research opdagede Jane Antrow Software Development og besluttede at give deres software til lagerstyring en chance. Teamet hos Antrow var utroligt hjælpsomme og gav hende en demo af deres software og besvarede alle hendes spørgsmål.
Jane var imponeret over softwarens brugervenlighed og fleksibilitet, som gjorde det muligt for hende nemt at spore hendes lagerbeholdning, salg og kundeoplysninger på ét sted. Hun satte også pris på muligheden for at generere rapporter og analysere sine data for at træffe informerede forretningsbeslutninger.
Siden implementeringen af Antrows software har Janes virksomhed oplevet betydelige forbedringer i effektivitet og nøjagtighed. Hun er nu i stand til hurtigt at identificere, hvilke produkter der sælger godt, og hvilke der skal genopføres, hvilket hjælper hende med at træffe informerede indkøbsbeslutninger.
Derudover har softwaren strømlinet hendes salgsproces, så hun nemt kan spore kundeoplysninger og følge op på kunderne for at tilskynde dem til at gentage forretninger. Alt i alt har Antrow Software Development været en afgørende faktor for Janes virksomhed og har hjulpet hende med at spare tid, reducere fejl og træffe bedre beslutninger. Hun er taknemmelig for støtten og ekspertisen fra Antrow-teamet og ser frem til fortsat at bruge deres software til at udvikle sin virksomhed.

Seneste artikler
5. marts 2023Forfatter: Antrow SoftwareImports System.Net.HttpImports System.Text.Json
Public Class OpenAI_API_Client
Private _apiKey As String
Private _httpClient As HttpClient
Private _baseUrl As String = "https://api.openai.com/v1"
Public Sub New(apiKey As String)
_apiKey = apiKey
_httpClient = New HttpClient()
_httpClient.DefaultRequestHeaders.Authorization = New System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", _apiKey)
End Sub
Public Async Function GetCompletion(prompt As String, model As String) As Task(Of String)
Dim requestBody As New With {
.prompt = prompt,
.model = model,
.max_tokens = 50,
.temperature = 0.5,
.n = 1,
.stop = Nothing
}
Dim requestBodyJson = JsonSerializer.Serialize(requestBody)
Dim response = Await _httpClient.PostAsync($"{_baseUrl}/completions", New StringContent(requestBodyJson, Encoding.UTF8, "application/json"))
response.EnsureSuccessStatusCode()
Dim responseBody = Await response.Content.ReadAsStringAsync()
Dim responseObject = JsonSerializer.Deserialize(Of Object)(responseBody)
Dim choices = responseObject("choices")(0)
Return choices("text")
End Function
End Class
To use this class, you can create an instance of the OpenAI_API_Client class with your API key and then call the GetCompletion method with the prompt and model name to generate text completion:
Dim client As New OpenAI_API_Client("<your-api-key>")Dim prompt = "Once upon a time"
Dim model = "text-davinci-002"
Dim completion = Await client.GetCompletion(prompt, model)
Console.WriteLine(completion)
This example uses the System.Net.Http namespace to make HTTP requests to the OpenAI API and the System.Text.Json namespace to serialize and deserialize JSON data./div>