SyedAanif /
AI-ML-Python
This repo contains learnings about Artificial Intelligence and Machine Learning using Python Jupyter Notebooks downloaded as HTML
Loading repository data…
textcortex / repository
This repo contains samples from Natural Language Generation (NLG) API TextCortex AI, namely Hemingwai. Generate blog articles, product descriptions, ad copies, emails and more with a single POST Request.
This repo contains examples regarding TextCortex API namely; Hemingwai.
Textcortex AI uses fine tuned models for application specific needs. Accessing them is as easy as making an API call.
import requests
import json
url = "https://api.textcortex.com/hemingwai/generate_text_v3"
payload = json.dumps({
"template_name": "product_description",
"prompt": {
"product_name": "Blue sports underwear",
"brand": "Nike",
"product_category": "Clothing",
"product_features": "Ultra soft and super well wet absorbing"
},
"temperature": 0.65,
"token_count": 200,
"n_gen": 2,
"source_language": "en",
"api_key": "YOUR_API_KEY"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
The response would be like the following:
{
"status": "success",
"generated_text": [
{
"text": "In addition to the standard color Nike Dri-Fit, the Nike Dri-Fit Blue is available in two other colors as well. The Nike Dri-Fit Blue is made of a special blend of spandex and elastane that is soft, ultra soft, and super well wet absorbing. It is designed for comfort and performance with a soft interior to help keep you cool and dry even after an intense workout.",
"id": "d7873828-0d1d-4961-a3a4-0f797c9a9218"
},
{
"text": "Nike Men's Men's Blue Sports Running Shorts.",
"id": "bb1f65b2-a660-4f33-8535-ffd5d86d16ee"
}
],
"remaining_requests": 86,
"error": 200
}
Rest of the examples together with PHP scripts can be found under root directory. If you have questions, contact us at dev@textcortex.com
Selected from shared topics, language and repository description—not editorial ratings.
SyedAanif /
This repo contains learnings about Artificial Intelligence and Machine Learning using Python Jupyter Notebooks downloaded as HTML
Ddhruv-IOT /
This repo. contains the project and stuff that was made during my Internship and Training on Data Analysis, Machine Learning, and Artificial Intelligence in Python at Techinest Pvt. Ltd.
Bbs1412 /
This repo contains a Generative AI project created in python. It is a multilingual AI powered questions generator based on any text paragraphs or the news article provided.
This repo contains AI AGENT using LangChain, Google Gemini LLM and DuckDuckGo
anilreddyperugu1 /
This repo contains basic to adv Python projects using AI
CShivani07 /
This repository contains a Short-Term Internship Report on Artificial Intelligence & Machine Learning, covering key concepts, applications, and Python programs. The report also includes a study on air pollution and its analysis using AI/ML techniques.