

Husein
Forum Replies Created
-
Husein
AdministratorApril 2, 2025 at 10:55 am in reply to: Which course provides a simple solution for making ChatGPT-4 and other AI toolsHello Erika,
Keeping everything free, will require you to pay from your own pocket to run them you cant subscribe to all these for free, however you can pay for them and let users use them for free in order to get more traffic to your website.
With respect to building tools, these 2 courses will help you build a system of tools that you can start from:
– https://learnwithhasan.com/learn/wordpress-saas/– https://learnwithhasan.com/learn/build-and-sell-ai-tools/
But in order to improve your skillset and build more complex and needed tools you’ll need to invest in your self and learning programming. This course contains a part where you’ll learn python: https://learnwithhasan.com/learn/prompt-engineering/
You’ll get access to all the courses above and the others in the library once you subscribe. -
Hello Newgen, i didnt quite understand whats the problem you’re facing can you please rephrase it and mention again what it is.
-
Replies viewable by members only
-
Hello Ben, take some time and try to learn the basics of coding (in this case, HTML, CSS, Javascript, and some basic PHP) and do some projects, and then you’ll be able to identify the problems in your code that are causing the issues.
In the meantime, please attach your PHP code without the OpenAI API key so that I can check the problem for you.
-
Husein
AdministratorMarch 6, 2025 at 9:16 am in reply to: Assistance Needed – Error in AI Tool on WordPress with GeminiReplies viewable by members only
-
Yes, there was an error with the lates version of simplerllm but it was resolved, so try installing it again in a virtual enviroment and let us know.
-
Replies viewable by members only
-
Replies viewable by members only
-
Oh okay, i get it now, but what is the error you’re getting. Anyways, here is my code if you want to try it directly:
from os import getenv
from phi.agent import Agent
from phi.model.openai.like import OpenAILike
# Ensure the Together API key is set as an environment variable
api_key = getenv(“TOGETHER_API_KEY”)
if not api_key:
raise ValueError(“TOGETHER_API_KEY environment variable is not set.”)
# Initialize the agent with the Together AI model
agent = Agent(
model=OpenAILike(
id=”mistralai/Mixtral-8x7B-Instruct-v0.1″,
api_key=api_key,
base_url=”https://api.together.xyz/v1″,
)
)
# Define the prompt
prompt = “Share a 2-sentence horror story.”
# Get the response from the agent
response = agent.run(prompt)
# Print the response content
print(response.content)
-
Replies viewable by members only
-
As Hasan mentioned, when starting with something like this, its better to start with a specific niche as it would be easier to market it and reach more audience at first, then you can add more tools in different fields but stay in the same macro niche.
With respect to finding ideas that make it worth it for people to pay, you can focus on building a good tool that, when you use it, you personally benefit from it and you can give people free daily/monthly limited credits to try the tool for free and if they want to use it more they would have to subscribe or buy points.
-
Replies viewable by members only
-
Replies viewable by members only
-
When you try the script ofcourse you need to add your API key.
But, i want you to attach the code here and please do so without the API key so that I can check it.