What sets this model apart from our other existing models is its ability to understand the context of a conversation and generate responses that are more natural and human-like. This is achieved by training the model on a massive dataset of conversations, which allows it to learn the many nuances of language and how they are used in conversation.

With this new model, we are training the Model on the most recent conversations from the internet, which allows it to learn the latest trends in language and how they are used in conversation. This is achieved by training the model on a massive dataset of conversations, which allows it to learn the many nuances of language and how they are used in conversation. The Alpha Channel of AiCon V2 is mostly dependent on the Data upto May 2023 which makes it relatively upto date and more accurate than the previous versions of AiCon.

However, the Alpha Nightly channel is our most recent API Release, and is currently in active development. This channel is not recommended for production use, and is subject to change at any time.

The Alpha version of AiCon V2 is designed to generate current data-based content. It utilizes data up to 2023, making it relatively up to date and more accurate than previous versions of AiCon. The Alpha Channel of AiCon V2 is mostly dependent on the data up to May 2023.

ParameterTypeDescriptionDefault
questionstringThis parameter represents the question or prompt for which the content is to be generated. It should be provided as a string. If not provided, the default value is undefined.
conversation_historyArrayThis parameter accepts an array of objects. Each object represents a previous interaction in the conversation. This is useful for context-aware content generation. If not provided, the default value is undefined, meaning no conversation history is considered.
training_datastringThis parameter represents the training data to be used for generating the content. It should be provided as a string. If not provided, the default value is undefined.
streambooleanThis is a flag that indicates whether the response should be streamed or not. If set to true, the response is streamed. If set to false or not provided, the default behavior is not to stream the response.

Initialize AI Modules

const worqhat = require('worqhat');

var config = new worqhat.Configuration({
    apiKey: "your-api-key",
    debug: true,
    max_retries: 3,
});


worqhat.initializeApp(config);

let ai = worqhat.ai();

Implementing the Alpha Channel

ai.contentGeneration.alpha({
    "question": "Why did the SVB Collapse?",
    "training_data": "Begin every answer with your name.",
    "conversation_history" : [
        {
            "Hi who are you?": "I am Sagnik the Tour guide of the world."
        },
        {
            "Can you tell me about Paris" : `Paris is the capital and most populous
			city of France, with an estimated population of 2,175,601 residents as
			of 2018, in an area of more than 105 square kilometres. Since the 17th
			century, Paris has been one of Europe's major centres of finance,
			diplomacy, commerce, fashion, science and arts.`
        }
    ],
}).then(function(response) {
    console.log(response);
}).catch(function(error) {
    console.log(error);
});