SlideShare a Scribd company logo
1 of 41
Download to read offline
Create	an	account	on	Twitter,	log	in	to	Twitter	with	this	
account,	then	visit	CheapBotsDoneQuick.com	and	Sign	in.
Open	your	grammar	with	a	{	in	the	JSON	window	…	
The	main	rule	of	your	Tracery	grammar	
is	called	“origin.”	The	name	of	each	rule	
is	a	non-terminal	symbol	that	can	be	
expanded	using	the	right-hand-side.	We	
refer	to	non-terminals	by	encasing	them	
in	#	…	#	on	the	right-hand	side	of	a	rule.
Next,	write	rules	to	expand	the	non-terminals	#meat#	
and	#veggie#	in	our	earlier	rule	for	making	a	pizza	
Add	as	many	options	as	you	want	to	the	right-
hand-side	of	each	rule;	all	are	equally	likely
Ditto	for	the	non-terminals	#cheese#	and	#sauce#		
	Add	as	much	variety	as	your	imagination	will	allow	…		
When	Tracery	expands	a	rule	(to	generate	a	
pizza,	say),	it	randomly	picks	from	the	right-
hand-side	options	for	each	non-terminal.
We	now	write	a	rule	for	the	last	non-terminal,	#base#,	
and	close	then	our	grammar	with	a	final		}		
Every	non-terminal	in	every	rule	now	
has	its	own	explicit	rule	definition,	so	our	
grammar	is	ready	to	start	generating.
This	handy	button	on	the	bottom	right	allows	you	to	
test	the	grammar,	and	tweet	the	results	you	like	…		
Use	this	drop-down	menu	to	select	the	
frequency	with	which	your	bot	will	tweet	
the	outputs	of	its	Tracery	grammar.
Finally,	save	your	bot	on	CheapBotsDoneQuick.com		
BotPizzaKitchen	
Choose	to	make	your	grammar	visible	to	users	of	the	site.
Now,	what	if	we	want	our	grammar	
to	give	a	name	to	each	pizza?		
	
I	can		
think	of		
a	few	…
We	can	make	a	name	by	joining	two	namelets		
But	our	names	bear	no	specific	relation	to	their	pizzas
If	only	the	expansions	of	#Meat#,	#Cheese#	
and	the	other	ingredients	were	influenced	by	
the	expansions	for	#Prefix#	and	#Suffix#	
But	Tracery	grammars	are	Context-Free:		every	non-
terminal	like	#Meat#	is	expanded	in	a	null	context,	
independently	of	all	others.	No	Context,	No	Influence!
Here’s	what	we	aim	for:	the	Cave	wall	prefix	
suits	Quorn,	while	Cowboy	is	apt	for	Ranch	
sauce.	The	name	influences	the	ingredients.	
Here’s	a	naïve	solution:	write	specific	pizza	rules	that	
hardcode	relations	across	non-terminals.	So	#Prefix_A#	
generates	names	that	go	with	#Meat_A#,	and	so	on.
*&$^$%	
	
Flippin’	
Nora!
Pre-Name	Ingredients		Prefix	 Suffix	Post-Name	Ingredients		
So	split	the	generator	into	two	self-contained	components
Meat		Prefix	 Suffix			Vegetable	on	Cheese	&	Sauce	on	Base		
Meat	&	Vegetable		Prefix	 Suffix	on	Cheese	&	Sauce	on	Base		
Meat	&	Vegetable	on	Cheese	Prefix	 Suffix	on	Sauce	on	Base	
Meat	&	Vegetable	on	Cheese	&	Sauce		Prefix	 Suffix	on	Base		
We’ll	need	four	high-level	rules		
for	four	different	kinds	of	split.
Suffix			Vegetable	on	Cheese	&	Sauce	on	Base		
Suffix		Vegetable	on	Cheese	&	Sauce	on	Base		
Suffix			Vegetable	on	Cheese	&	Sauce	on	Base		
Suffix		Vegetable	on	Cheese	&	Sauce	on	Base		
Each	self-contained	component	has	internal	agreement	
that	can	vary	in	the	number	of	dependency	pairings	
Meat		Prefix	
1	Possibility	 4	Agreement	Possibilities	
Yeah!
Our	new	top-level	rules	are	below,	and	produce	named	
pizzas	as	above.	In	total,	the	new	grammar	has	100	rules.
You	can	download	the	grammar	and	this	
spreadsheet	from	our	Github	repository	
All	the	data	for	our	grammar	is	stored	in	a	spreadsheet
What	a		
great	flippin’	
pantry!
CheapBotsDoneQuick	allows	us	
to	make	our	bots	responsive	to	
tweets	that	explicitly	@	mention	
them.	So	let’s	make	our	bot	
deliver	pizza	recommendations	
that	match	specific	tastes.	
	
I	could	
murder	a	
seafood	
pizza!
First,	we	
need	to	add	a	
new	column	
to	our	DB	…
The	type	of	a	pizza	is	a	function	of	the	type	of	its	
ingredients.	So	for	each	qualification	on	ingredients,	
generate	new	rules	for	pizzas	and	their	elements.
Maker	
Specialized	
Namer	
Pizza-specific	
Combined	
Grammar
The	named-pizza	maker	has	100	rules.	
This	jumps	to	800	rules	when	we	add	
qualifications,	and	to	1500	rules	when	
we	add	negative	qualifications	as	well.
Your	pizza,		
M’lord.			
But	our	Tracery	grammar	still	fits	into	
CheapBotsDoneQuick.com	so	let’s	press	
on	with	the	delivery	of	speciality	pizzas.	
Choose	the	Reply	option	for	
your	bot	(still	in	Beta)	so	you	
can	configure	how	it	will	reply	
to	@	mentions	from	others.
{
“.”: “#pizza#”
}
	
	
Response	grammars	use	
a	simpler	JSON	format,	
with	just	one	element	
on	the	right-hand-side.	
But	you	CAN	refer	to	
non-terminals	in	the	
main	grammar	here.	
The	left-hand-side	of	a	response	rule		
is	not	a	non-terminal,	but	a	string	that	
must	literally	match	part	of	an	@mention
Each	qualification	of	an	
ingredient	is	listed	on	the	
left.	The	corresponding	
pizza	non-terminal	is	on	
the	right.	
These	response	rules	are	applied	in	the	given	order,	so	
it	is	important	that	the	negative	qualifications	(e.g.	
“no	meat”)	are	listed	before	the	positives	(e.g.	“meat”).
Each	left-hand-side	can	also	be	a	regular	expression.	Use	
“.”	to	match	any	string.		Use	[x|X]	for	a	choice	between		
“x”	and	“X”,	as	in	the	case-insensitive	texts	above.
Your	
F**king	
Wine,	Sir.	
Let’s	consider	how	our	pizza	bot		
might	usefully	interact	with	others.	
How	about	another	bot	that	suggests	wine		
pairings	for	our	newly	invented	pizzas?
We	need	to		
whip	up	a	cocktail	
of	complementary	
grammars.		
One	will	map	from	foods	to	
	wines,	and	another	will	listen	for	the	
triggers	to	exploit	this	mapping.
To	start,	we	should	codify	our	wine-pairing	
knowledge	in	an	explicit	form,	as	in	this	very	
spreadsheet	…
Each	food-feature-rule	(non-terminals	of	the	
form	“feature	bev”)	maps	onto	its	own	specialist	
list	of	recommendations	
Add	a	separate	rule	for	each	feature	of	the	food	on	
which	a	wine	pairing	can	be	predicated	…
Now,	we	need	a	means	of	invoking	each	food-
feature-rule,	so	for	each	food	feature,	add	a	
stimulus:response	pair	to	the	response	grammar.
Now	we	need	to	get	the	bicameral	parts	
of	the	grammar	to	talk	to	each	other.	
We	must	make	sure	that	every	pizza	
created	by	our	bot	mentions	the	name	
of	a	recommendation	bot,	such	as	itself
Now	our	recommender	can	be	triggered	
by	any	mention	of	specific	ingredients	
(or	a	whole	class	of	ingredients)		
in	our	pizza	descriptions	…	
…	and	respond	accordingly,	as	below.
But	our		
wine	grammar		
offers	pairings	
on	the	basis		
of	just	a	single	
ingredient!	
	
Fancy	a	drink	
with	your	pizza?	
	
Flippin’	heck,	
you’re	right!
Solution:	
consider	all	
pairwise	combos	
of	ingredients	
that	suggest	the	
same	wine!	
	
For	each		
combo,	add	an	
explicit	recomm-
endation	rule	to	
the	response	
grammar.
Notice	the	use	of	the	wildcard	characters	.+	here.	The	dot	.	
matches	any	character	while	the	+	means	one	or	more	uses
Now	our	
response	
grammar	can	
recommend	wine	
for	a	pairing	of	
ingredients.

More Related Content

More from Tony Veale

Better than the real thing: AI at the Movies
Better than the real thing: AI at the MoviesBetter than the real thing: AI at the Movies
Better than the real thing: AI at the MoviesTony Veale
 
Divine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical MachinesDivine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical MachinesTony Veale
 
Apt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the MoviesApt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the MoviesTony Veale
 
Mechanical muses
Mechanical musesMechanical muses
Mechanical musesTony Veale
 
Hawking's riddle: An OWL lesson
Hawking's riddle: An OWL lessonHawking's riddle: An OWL lesson
Hawking's riddle: An OWL lessonTony Veale
 
Metaphors all the way down
Metaphors all the way downMetaphors all the way down
Metaphors all the way downTony Veale
 
Placebo effect
Placebo effectPlacebo effect
Placebo effectTony Veale
 
Game of tropes
Game of tropesGame of tropes
Game of tropesTony Veale
 
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...Tony Veale
 
Seduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomSeduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomTony Veale
 
Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Tony Veale
 
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in TwitterSemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in TwitterTony Veale
 
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...Tony Veale
 
Set Up Your Twitter App!
Set Up Your Twitter App!Set Up Your Twitter App!
Set Up Your Twitter App!Tony Veale
 
Colorful Twitterbots
Colorful TwitterbotsColorful Twitterbots
Colorful TwitterbotsTony Veale
 
Introducing Computational Creativity
Introducing Computational CreativityIntroducing Computational Creativity
Introducing Computational CreativityTony Veale
 
2015 Code Camp on Computational Creativity
2015 Code Camp on Computational Creativity2015 Code Camp on Computational Creativity
2015 Code Camp on Computational CreativityTony Veale
 
WHIM: The What-If Machine
WHIM: The What-If MachineWHIM: The What-If Machine
WHIM: The What-If MachineTony Veale
 
Breaking Bad and Coming Good: Computer-Generated Stories of Change
Breaking Bad and Coming Good: Computer-Generated Stories of ChangeBreaking Bad and Coming Good: Computer-Generated Stories of Change
Breaking Bad and Coming Good: Computer-Generated Stories of ChangeTony Veale
 
Tutorial on Creative Metaphor Processing
Tutorial on Creative Metaphor ProcessingTutorial on Creative Metaphor Processing
Tutorial on Creative Metaphor ProcessingTony Veale
 

More from Tony Veale (20)

Better than the real thing: AI at the Movies
Better than the real thing: AI at the MoviesBetter than the real thing: AI at the Movies
Better than the real thing: AI at the Movies
 
Divine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical MachinesDivine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical Machines
 
Apt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the MoviesApt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the Movies
 
Mechanical muses
Mechanical musesMechanical muses
Mechanical muses
 
Hawking's riddle: An OWL lesson
Hawking's riddle: An OWL lessonHawking's riddle: An OWL lesson
Hawking's riddle: An OWL lesson
 
Metaphors all the way down
Metaphors all the way downMetaphors all the way down
Metaphors all the way down
 
Placebo effect
Placebo effectPlacebo effect
Placebo effect
 
Game of tropes
Game of tropesGame of tropes
Game of tropes
 
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
 
Seduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomSeduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese Room
 
Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)
 
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in TwitterSemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
 
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
 
Set Up Your Twitter App!
Set Up Your Twitter App!Set Up Your Twitter App!
Set Up Your Twitter App!
 
Colorful Twitterbots
Colorful TwitterbotsColorful Twitterbots
Colorful Twitterbots
 
Introducing Computational Creativity
Introducing Computational CreativityIntroducing Computational Creativity
Introducing Computational Creativity
 
2015 Code Camp on Computational Creativity
2015 Code Camp on Computational Creativity2015 Code Camp on Computational Creativity
2015 Code Camp on Computational Creativity
 
WHIM: The What-If Machine
WHIM: The What-If MachineWHIM: The What-If Machine
WHIM: The What-If Machine
 
Breaking Bad and Coming Good: Computer-Generated Stories of Change
Breaking Bad and Coming Good: Computer-Generated Stories of ChangeBreaking Bad and Coming Good: Computer-Generated Stories of Change
Breaking Bad and Coming Good: Computer-Generated Stories of Change
 
Tutorial on Creative Metaphor Processing
Tutorial on Creative Metaphor ProcessingTutorial on Creative Metaphor Processing
Tutorial on Creative Metaphor Processing
 

Recently uploaded

22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 

Recently uploaded (20)

22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 

Pizza maker: A Tutorial on Building Twitterbots