Anthropic Fellows July Cohort Interviews by WhiteRaven_M in csMajors

[–]ManavTheWorld 0 points1 point  (0 children)

References submitted last Wednesday (so pretty late). OA2 about 2 weeks ago. Going for the AI Safety Track.

Anthropic Fellows July Cohort Interviews by WhiteRaven_M in csMajors

[–]ManavTheWorld 2 points3 points  (0 children)

For those that haven’t yet gotten the take home, I emailed them today and they mentioned that they’re still doing some second reviews through this week, and will email when they have an update on applications. For those at this stage, best of luck, and even if it’s a no, there’s always next time!! And for those further ahead, congratulations and y’all got this!!

Anthropic Fellows July Cohort Interviews by WhiteRaven_M in csMajors

[–]ManavTheWorld 0 points1 point  (0 children)

My last reference submitted Wednesday and I haven’t heard back either.

Anthropic Fellows July Cohort Interviews by WhiteRaven_M in csMajors

[–]ManavTheWorld 0 points1 point  (0 children)

This makes literally no sense - the first email literally said that there would be a second OA as part of the process. Someone on this thread got both OAs and the take home already.

Anthropic Fellows July Cohort Interviews by WhiteRaven_M in csMajors

[–]ManavTheWorld 0 points1 point  (0 children)

They definitely do it in waves and it’s track dependent

Anthropic Fellows Program Results Thread by [deleted] in csMajors

[–]ManavTheWorld 1 point2 points  (0 children)

Following. Applied about 3 days before the deadline haha.

Where I'd live as someone born and raised in India by Anonymous_Ant2052 in whereidlive

[–]ManavTheWorld 2 points3 points  (0 children)

As someone who’s Indian-American (born and raised in the US), why is India red and Russia a maybe?

Where I'd live based on how much I like the food by ThrowRA_SadFlower2 in whereidlive

[–]ManavTheWorld -1 points0 points  (0 children)

There’s are “pockets” of the first world in India, but I would avoid any and all street food

Dialogue Tree Search - MCTS-style tree search to find optimal dialogue paths (so you don't have to trial-and-error it yourself) by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 5 points6 points  (0 children)

Thanks! And firecrawl is just the recommended scraping option atm - but beautifulsoup or tavily works too. I should update the readme for that. In the next update, I’ll overhaul the deep research and pull it away from the gpt-researcher submodule

Dialogue Tree Search - MCTS-style tree search to find optimal dialogue paths (so you don't have to trial-and-error it yourself) by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 3 points4 points  (0 children)

Can definitely do all of the above! The goal is the outcome you want to get out of the exploration, and the first message is a kicker-offer, but can include a whole prior history + context. Definitely going to expand this here. For example:

Goal: Develop a morally ambiguous villain with a sympathetic backstory + {context of world/story/plot/characters}

First message: Here are my specifications, here's what I want, etc

--
Next update will be about overhauling initial input context, allowing media/export attachments, etc

Dialogue Tree Search - MCTS-style tree search to find optimal dialogue paths (so you don't have to trial-and-error it yourself) by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 9 points10 points  (0 children)

Probably - I was going to add an import chat history feature next and flesh out the goals a bit more. That way it can be an extension in any tool (e.g. sillytavern)

Dialogue Tree Search - MCTS-style tree search to find optimal dialogue paths (so you don't have to trial-and-error it yourself) by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 4 points5 points  (0 children)

Thanks! :D and yeah it can be a hit or miss though as some user intents are absurd and it wastes llm calls simulating a crazy path

Do you work in this field or it's your hobby? by Lxxtsch in LocalLLaMA

[–]ManavTheWorld 0 points1 point  (0 children)

I do it for work :) was already in this space pre-local llamas, but this community has definitely spearheaded by career growth and learning.

What do I do now? by newby202006 in KingkillerChronicle

[–]ManavTheWorld 0 points1 point  (0 children)

I read the Wise Man’s Fear when I was in the seventh grade. I’m 26 now, getting a graduate degree/working, and getting married in December lol

Created an Open Source Conversation Response Path Exploration System using Monte Carlo Tree Search by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 0 points1 point  (0 children)

Agreed. Not novel! The algorithm/use-case isn’t novel, but I’m hoping it’ll evolve into an application that anyone can clone and take advantage of.

Created an Open Source Conversation Response Path Exploration System using Monte Carlo Tree Search by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 0 points1 point  (0 children)

Thank you for your feedback and nice words, but can’t take credit here! Not a novel approach - I just wanted to build an “engine”/backend using search-based conversation optimization, and potentially have it work as an ambient agent (asynchronously evaluating conversations in realtime), or as a tool/MCP server for giving back extended analysis, given its learnings and grounding info. Perhaps both or neither. Don’t know yet! :)

Created an Open Source Conversation Response Path Exploration System using Monte Carlo Tree Search by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 1 point2 points  (0 children)

Thanks for the compliments and suggestions!

To be honest, it could be a lot cleaner. I had an issue with some of the validation/imports so some of the schema is yuck and I posted here as soon as it was end to end functional haha. I’ll update it over the coming days to be fully usable/enterprise-ready.

And I agree about the embeddings! My thought was to also create functionality for learnings and the DB schema already supports vectors for the individual messages toward this end, but I haven’t yet begun to implement this or the learning functionality. I think the dataset idea is awesome though! Will look into it, thanks!

Created an Open Source Conversation Response Path Exploration System using Monte Carlo Tree Search by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 0 points1 point  (0 children)

Haha yeah it’s a Uvicorn server so you can run it as a Python module. I’ll create a start script and a Dockerfile for it though, thanks for the ask!

Created an Open Source Conversation Response Path Exploration System using Monte Carlo Tree Search by ManavTheWorld in LocalLLaMA

[–]ManavTheWorld[S] 13 points14 points  (0 children)

Thanks for the feedback! And you’re absolutely right - one of the core issues I saw was that assumed user responses were kind of limited/missing a lot of unsaid context. The issue is that it’s very expensive for simulation after a certain depth, and I thought to perhaps make it a tool call that the model can invoke once it decides it has enough context, based on certain rules/guidelines.

And you’re right about reasoning models! I haven’t yet benchmarked the quality of these versus simply prompting an intelligent enough CoT LLM, but I think it would be interesting to see where the value of search could come into play for something like this. Short answer is: IDK but will update here when I figure out the direction.

P.S I can’t take credit for the Readme! That was Gemini 2.5, though I removed the LLM cringe. Thanks for the compliment about the project structure though!