AI & ML interests

None defined yet.

narra-ai's activity

ameerazam08ย 
posted an update 7 days ago
Abhaykoulย 
posted an update 7 days ago
view post
Post
3700
๐Ÿ”ฅ THE WAIT IS OVER... HAI-SER IS HERE! ๐Ÿ”ฅ

Yo fam, this ain't just another AI dropโ€” this is the FUTURE of emotional intelligence! ๐Ÿš€

Introducing HAI-SER, powered by Structured Emotional Reasoning (SER), the next-level AI that doesnโ€™t just understand your wordsโ€”it feels you, analyzes your emotions, and helps you navigate lifeโ€™s toughest moments. ๐Ÿ’ก

๐Ÿ’ฅ What makes HAI-SER a game-changer?
๐Ÿ”น Emotional Vibe Check โ€“ Gets the mood, energy, and whatโ€™s really going on ๐ŸŽญ
๐Ÿ”น Mind-State Analysis โ€“ Breaks down your thoughts, beliefs, and patterns ๐Ÿคฏ
๐Ÿ”น Root Cause Deep-Dive โ€“ Unpacks the WHY behind your emotions ๐Ÿ’ก
๐Ÿ”น Impact Check โ€“ Sees how itโ€™s affecting your life and mental health ๐Ÿ’”
๐Ÿ”น Safety Check โ€“ Prioritizes your well-being and crisis management ๐Ÿšจ
๐Ÿ”น Healing Game Plan โ€“ Custom strategies to help you bounce back ๐Ÿ’ช
๐Ÿ”น Growth Potential โ€“ Turns struggles into opportunities for self-improvement ๐Ÿ“ˆ
๐Ÿ”น How to Approach โ€“ Teaches you and others how to communicate and heal ๐Ÿค
๐Ÿ”น Personalized Response โ€“ Not just generic adviceโ€”real talk, tailored to YOU ๐Ÿ’ฏ

No more robotic AI responses. No more surface-level advice. HAI-SER gets deep, analyzing emotions with precision and giving real, actionable support.

This ainโ€™t just AIโ€”this is your digital therapist, life coach, and hype squad all in one. Whether itโ€™s mental health, career struggles, relationships, or personal growth, HAI-SER has your back.

๐Ÿš€ The future of emotionally intelligent AI is HERE.
Are you ready? ๐Ÿ”ฅ๐Ÿ’ฏ

HelpingAI/HAI-SER
ยท
not-lainย 
posted an update 8 days ago
AtAndDevย 
posted an update 8 days ago
view post
Post
1820
everywhere i go i see his face
AtAndDevย 
posted an update 15 days ago
view post
Post
508
Deepseek gang on fire fr fr
AtAndDevย 
posted an update 17 days ago
view post
Post
1595
R1 is out! And with a lot of other R1 releated models...
not-lainย 
posted an update 20 days ago
view post
Post
1395
we now have more than 2000 public AI models using ModelHubMixin๐Ÿค—
not-lainย 
posted an update 25 days ago
view post
Post
3963
Published a new blogpost ๐Ÿ“–
In this blogpost I have gone through the transformers' architecture emphasizing how shapes propagate throughout each layer.
๐Ÿ”— https://huggingface.co/blog/not-lain/tensor-dims
some interesting takeaways :
Abhaykoulย 
posted an update about 2 months ago
view post
Post
1926
๐Ÿ”ฅ BIG ANNOUNCEMENT: THE HELPINGAI API IS LIVE! ๐Ÿ”ฅ

Yo, the moment youโ€™ve all been waiting for is here! ๐Ÿš€ The HelpingAI API is now LIVE and ready to level up your projects! ๐Ÿ”ฅ Weโ€™re bringing that next-level AI goodness straight to your fingertips. ๐Ÿ’ฏ

No more waitingโ€” itโ€™s time to build something epic! ๐Ÿ™Œ

From now on, you can integrate our cutting-edge AI models into your own applications, workflows, and everything in between. Whether youโ€™re a developer, a creator, or just someone looking to make some serious moves, this is your chance to unlock the full potential of emotional intelligence and adaptive AI.

Check out the docs ๐Ÿ”ฅ and letโ€™s get to work! ๐Ÿš€

๐Ÿ‘‰ Check out the docs and start building (https://helpingai.co/docs)
๐Ÿ‘‰ Visit the HelpingAI website (https://helpingai.co/)
ยท
akhaliqย 
posted an update about 2 months ago
view post
Post
8287
Google drops Gemini 2.0 Flash Thinking

a new experimental model that unlocks stronger reasoning capabilities and shows its thoughts. The model plans (with thoughts visible), can solve complex problems with Flash speeds, and more

now available in anychat, try it out: akhaliq/anychat
  • 2 replies
ยท
AtAndDevย 
posted an update about 2 months ago
view post
Post
456
@s3nh Hey man check your discord! Got some news.
  • 4 replies
ยท
eienmojikiย 
posted an update about 2 months ago
view post
Post
1517
๐Ÿ‘€ Introducing 2048 Game API: A RESTful API for the Classic Puzzle Game ๐Ÿงฉ

I'm excited to share my latest project, 2048 Game API, a RESTful API that allows you to create, manage, and play games of 2048, a popular puzzle game where players slide numbered tiles to combine them and reach the goal of getting a tile with the value of 2048.

โญ Features
Create new games with customizable board sizes (3-8)
Make moves (up, down, left, right) and get the updated game state
Get the current game state, including the board, score, and game over status
Delete games
Generate images of the game board with customizable themes (light and dark)

๐Ÿ”— API Endpoints
POST /api/games - Create a new game
GET /api/games/:gameId - Get the current game state
POST /api/games/:gameId/move - Make a move (up, down, left, right)
DELETE /api/games/:gameId - Delete a game
GET /api/games/:gameId/image - Generate an image of the game board

๐Ÿงฉ Example Use Cases
- Create a new game with a 4x4 board:
curl -X POST -H "Content-Type: application/json" -d '{"size": 4}' http://localhost:3000/api/games

- Make a move up:
curl -X POST -H "Content-Type: application/json" -d '{"direction": "up"}' http://localhost:3000/api/games/:gameId/move

- Get the current game state:
curl -X GET http://localhost:3000/api/games/:gameId

๐Ÿ’• Try it out!
- Demo: eienmojiki/2048
- Source: https://github.com/kogakisaki/koga-2048
- You can try out the API by running the server locally or using a tool like Postman to send requests to the API. I hope you enjoy playing 2048 with this API!

Let me know if you have any questions or feedback!

๐Ÿง Mouse1 is our friend๐Ÿง
lunarfluย 
posted an update 2 months ago
akhaliqย 
posted an update 2 months ago
view post
Post
9248
QwQ-32B-Preview is now available in anychat

A reasoning model that is competitive with OpenAI o1-mini and o1-preview

try it out: akhaliq/anychat
  • 1 reply
ยท
akhaliqย 
posted an update 2 months ago
view post
Post
3943
New model drop in anychat

allenai/Llama-3.1-Tulu-3-8B is now available

try it here: akhaliq/anychat
akhaliqย 
posted an update 2 months ago
view post
Post
2900
anychat

supports chatgpt, gemini, perplexity, claude, meta llama, grok all in one app

try it out there: akhaliq/anychat
not-lainย 
posted an update 3 months ago
view post
Post
2303
ever wondered how you can make an API call to a visual-question-answering model without sending an image url ๐Ÿ‘€

you can do that by converting your local image to base64 and sending it to the API.

recently I made some changes to my library "loadimg" that allows you to make converting images to base64 a breeze.
๐Ÿ”— https://github.com/not-lain/loadimg

API request example ๐Ÿ› ๏ธ:
from loadimg import load_img
from huggingface_hub import InferenceClient

# or load a local image
my_b64_img = load_img(imgPath_url_pillow_or_numpy ,output_type="base64" ) 

client = InferenceClient(api_key="hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")

messages = [
	{
		"role": "user",
		"content": [
			{
				"type": "text",
				"text": "Describe this image in one sentence."
			},
			{
				"type": "image_url",
				"image_url": {
					"url": my_b64_img # base64 allows using images without uploading them to the web
				}
			}
		]
	}
]

stream = client.chat.completions.create(
    model="meta-llama/Llama-3.2-11B-Vision-Instruct", 
	messages=messages, 
	max_tokens=500,
	stream=True
)

for chunk in stream:
    print(chunk.choices[0].delta.content, end="")
KingNishย 
posted an update 4 months ago
KingNishย 
posted an update 4 months ago
view post
Post
8243
Exciting news! Introducing super-fast AI video assistant, currently in beta. With a minimum latency of under 500ms and an average latency of just 600ms.

DEMO LINK:
KingNish/Live-Video-Chat
  • 1 reply
ยท